.recovery-title {
        width: 100%;
        max-width: 603px;
        margin: 40px auto 0;
        padding: 0 44px;
    }

    .recovery-wrapper {
        width: 100%;
        max-width: 956px;
        margin: 60px auto 0;
        padding: 0 40px;
    }

    .recovery-desc {
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 16px;
    }

    .error-text {
        color: red;
        font-weight: 700;
        margin: 10px 0 10px;
        text-align: center;
        font-size: 14px;
    }

    .recovery-form {
        margin-top: 50px;
    }

    .form-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        justify-content: center;
    }

    .form-label {
        width: 240px;
        font-weight: 600;
        padding-right: 24px;
        white-space: nowrap;
        font-size: 16px;
        flex-shrink: 0;
    }

    .required {
        color: red;
        margin-left: 4px;
    }

    .form-input {
        width: 444px;
        max-width: 100%;
        height: 44px;
        border-radius: 18px;
        border: 1px solid #ccc;
        padding: 0 16px;
        outline: none;
        font-size: 14px;
    }

    .form-input:focus {
        border-color: #6fbf4a;
    }

    .btn-send-wrapper {
        text-align: center;
        margin-top: 80px;
    }

    .btn-send {
        width: 220px;
        max-width: 100%;
        height: 44px;
        border-radius: 18px;
        background: #7cc24a;
        border: none;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        color: #000;
    }

    .btn-send:hover {
        background: #6db33f;
    }

    .btn-send:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Tablet */
    @media (max-width: 768px) {
        .recovery-title {
            margin: 30px auto 0;
            padding: 0 20px;
        }

        .recovery-wrapper {
            margin: 50px auto 0;
            padding: 0 20px;
        }

        .recovery-desc {
            font-size: 14px;
        }

        .form-item {
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 28px;
        }

        .form-label {
            width: 100%;
            padding-right: 0;
            padding-bottom: 8px;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
        }

        .btn-send-wrapper {
            margin-top: 40px;
        }

        .btn-send {
            width: 180px;
            font-size: 16px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .recovery-title {
            margin: 20px auto 0;
            padding: 0 16px;
        }

        .recovery-wrapper {
            margin: 40px auto 0;
            padding: 0 16px;
        }

        .recovery-desc {
            font-size: 13px;
            line-height: 1.5;
        }

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

        .form-label {
            font-size: 13px;
        }

        .form-input {
            height: 40px;
            font-size: 13px;
            padding: 0 12px;
        }

        .btn-send-wrapper {
            margin-top: 30px;
        }

        .btn-send {
            width: 160px;
            height: 40px;
            font-size: 15px;
        }

        .error-text {
            font-size: 12px;
        }
    }

    /* Large screens */
    @media (min-width: 1200px) {
        .recovery-title {
            margin: 50px auto 0;
        }

        .recovery-wrapper {
            margin: 50px auto 0;
        }
    }