﻿.reset-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 440px;
    padding: 48px 40px;
}

.reset-header {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #003580;
    margin-bottom: 8px;
    text-decoration: none;
    display: inline-block;
}

.reset-title {
    font-size: 24px;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 8px;
}

.reset-subtitle {
    font-size: 14px;
    color: #586069;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #24292e;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5da;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
}

    .form-input:focus {
        outline: none;
        border-color: #0366d6;
        box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
    }

    .form-input.error {
        border-color: #d73a49;
    }

.error-message {
    color: #d73a49;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

    .error-message.show {
        display: block;
    }

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

    .success-message.show {
        display: block;
    }

.btn-reset {
    width: 100%;
    padding: 14px;
    background: #0366d6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-reset:hover {
        background: #0256c7;
    }

    .btn-reset:disabled {
        background: #d1d5da;
        cursor: not-allowed;
    }

.back-login {
    text-align: center;
    margin-top: 24px;
}

    .back-login a {
        color: #0366d6;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }

        .back-login a:hover {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .reset-container {
        padding: 32px 24px;
    }

    .reset-title {
        font-size: 22px;
    }
}
