:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #525252;
    --input-bg: #ffffff;
    --input-border: #e5e5e5;
    --input-focus: #000000;
    --btn-bg: #000000;
    --btn-text: #ffffff;
    --error: #ef4444;
    --success: #10b981;
    --radius-lg: 24px;
    --radius-pill: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin-top: 60px;
}

.header {
    text-align: center;
    margin-bottom: 48px;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 32px;
}

h1 {
    font-family: 'Inter', sans-serif;
    /* Fallback for ABC Favorit */
    font-size: 42px;
    font-weight: 300;
    /* Light weight like original */
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

input,
textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--input-focus);
}

input::placeholder,
textarea::placeholder {
    color: #a3a3a3;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: var(--btn-bg);
    border: 1px solid var(--btn-bg);
    border-radius: var(--radius-pill);
    color: var(--btn-text);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}

.btn-primary:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loader */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

/* Success State */
.success-message {
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    color: var(--text-primary);
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
}

.success-message h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.error-message {
    color: var(--error);
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}