/* Auth Pages Styles */

.auth-container {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-box {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 48px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-align: center;
}

.auth-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    text-align: center;
}

.auth-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s;
    background: #fafafa;
    color: #1a1a1a;
}

.form-input:focus {
    outline: none;
    border-color: #1a1a1a;
    background: white;
}

.form-input::placeholder {
    color: #999;
}

.form-hint {
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #1a1a1a;
}

.checkbox-text {
    font-size: 14px;
    color: #666;
}

.auth-btn {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #000;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .auth-container {
        padding: 20px;
        min-height: calc(100vh - 80px);
    }

    .auth-box {
        padding: 32px 24px;
    }

    .auth-title {
        font-size: 28px;
    }

    .auth-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .auth-box {
        padding: 24px 20px;
    }

    .auth-title {
        font-size: 24px;
    }
}