.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-color);
}

.auth-card {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-card h2 {
    margin-bottom: 0.5rem;
    width: 100%;
}

.auth-card p {
    margin-bottom: 2rem;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.auth-logo-text {
    font-weight: 400;
    font-size: 42px;
    color: var(--text-color);
    line-height: 1;
}

.auth-logo-badge {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
}

.auth-header h1 {
    margin-bottom: 8px;
    font-size: 1.5em;
}

.auth-header p {
    color: var(--text-color);
    opacity: 0.7;
}

.auth-form {
    margin-bottom: 24px;
}

.auth-form-container {
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.7;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.btn-block {
    width: 100%;
}

.auth-footer {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 1.5rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 0.85em;
    color: var(--text-color);
    opacity: 0.8;
}

.auth-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0 1.5rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.auth-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.auth-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.auth-forgot {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-forgot:hover {
    text-decoration: underline;
}

.auth-container .btn-primary {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
    box-sizing: border-box;
}

.auth-container .btn-primary:hover {
    opacity: 0.9;
}

.register-link {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.85em !important;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85em;
}

.auth-link:hover {
    text-decoration: underline;
}

.accent-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
}

.accent-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.accent-checkbox:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}

.auth-checkbox span {
    font-size: 0.85em;
}

.btn-primary {
    box-sizing: border-box;
}

/* Form Element selbst */
.auth-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
} 