/* Find ID Page */

.recovery-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 60px 20px;

    background-color: #f7f7f7;
}


.recovery-container {
    width: 100%;
    max-width: 520px;
}


/* Logo */

.auth-logo-area {
    margin-bottom: 24px;

    text-align: center;
}


.auth-logo {
    color: #222222;

    font-size: 26px;
    font-weight: 800;

    text-decoration: none;
}


/* Card */

.recovery-card {
    padding: 38px;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    background-color: #ffffff;

    box-shadow:
            0 8px 30px
            rgba(0, 0, 0, 0.05);
}


.recovery-title {
    margin: 0 0 10px;

    text-align: center;

    font-size: 28px;
    font-weight: 800;

    color: #222222;
}


.recovery-description {
    margin: 0 0 34px;

    text-align: center;

    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}


/* Form */

.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 700;

    color: #333333;
}


.form-group input {
    width: 100%;

    height: 46px;

    padding: 0 13px;

    border: 1px solid #dddddd;
    border-radius: 8px;

    outline: none;

    font-size: 14px;

    box-sizing: border-box;
}


.form-group input:focus {
    border-color: #555555;
}


.field-help {
    margin: 7px 0 0;

    color: #888888;

    font-size: 12px;
}


/* Verification */

.verification-row {
    display: flex;

    gap: 10px;
}


.verification-row input {
    flex: 1;

    min-width: 0;
}


.verification-button {
    flex-shrink: 0;

    min-width: 125px;

    padding: 0 14px;

    border: 1px solid #333333;
    border-radius: 8px;

    background-color: #333333;

    color: white;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


.verification-button:hover:not(:disabled) {
    background-color: #555555;
}


.verification-button:disabled {
    opacity: 0.55;

    cursor: not-allowed;
}


.verification-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 8px;
}


.verification-timer {
    font-size: 12px;
    font-weight: 600;

    color: #666666;
}


.verification-message {
    display: block;

    margin-top: 7px;

    font-size: 12px;
    line-height: 1.5;

    color: #777777;
}


.verification-message.success {
    color: #16803b;

    font-weight: 700;
}


.verification-message.error {
    color: #d93025;

    font-weight: 600;
}


/* Find Button */

.recovery-submit-button {
    width: 100%;

    height: 48px;

    margin-top: 5px;

    border: none;
    border-radius: 8px;

    background-color: #222222;

    color: white;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;
}


.recovery-submit-button:hover:not(:disabled) {
    background-color: #444444;
}


.recovery-submit-button:disabled {
    opacity: 0.45;

    cursor: not-allowed;
}


/* Result */

.recovery-result {
    margin-top: 28px;

    padding: 22px;

    border-radius: 10px;

    background-color: #f5f5f5;

    text-align: center;
}


.result-label {
    margin: 0 0 12px;

    color: #666666;

    font-size: 13px;
}


.result-ids {
    font-size: 20px;
    font-weight: 800;

    color: #222222;
}


.result-id + .result-id {
    margin-top: 7px;
}


/* Bottom */

.recovery-bottom {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 28px;

    color: #888888;

    font-size: 13px;
}


.recovery-bottom a {
    color: #555555;

    text-decoration: none;

    font-weight: 700;
}


.recovery-bottom a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 600px) {

    .recovery-page {
        padding: 35px 15px;
    }


    .recovery-card {
        padding: 28px 20px;
    }


    .verification-row {
        flex-direction: column;
    }


    .verification-button {
        width: 100%;

        min-height: 44px;
    }
}