.ferragamo-page {
    width: 90%;
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.back-arrow {
    width: 36px;
    height: 36px;
    border: 2px solid #0088FF;
    color: #0088FF;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    padding: 20px 20px;
    margin-top: 40px;
    margin-left: 70px;

}


.back-arrow:hover {
    background-color: transparent;
    color: #0088FF;
    border: 2px solid #0088FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.login-container-ferragamo {
    display: flex;
    width: 90%;
    height: 1070px;
    margin: auto;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    background-color: #F3F3F3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    margin-top: 10px;
    padding: 40px 60px;

}




.right-container-ferragamo {
    width: 90%;
    max-width: 816px;
    height: 100%;
    max-height: 1070px;
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    align-items: center;
    padding: 20px;
}

.right-container-ferragamo h1 {
    font-size: 36px;
    margin-bottom: 20px;
}


.text-container {
    font-size: 42px;
}

.main-text-ferragamo {

    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-weight: bold;

}

.price {
    font-size: 24px;
    font-weight: bold;
}



.source-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    width: 200px;
    background: transparent;
    border: 2px solid #0088FF;
    color: #1B1B1B;
    margin-right: 10px;
    font-weight: bold;
}

.source-button:hover {
    background-color: transparent;
    color: #1B1B1B;
    border: 2px solid #0088FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* right container image styles */
.left-container-ferragamo {
    width: 100%;
    max-width: 816px;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;

}



.left-container-ferragamo img {
    width: 100%;
    max-width: 816px;
    max-height: 1000px;
    object-fit: cover;
    border-radius: 10px;
}




@media (max-width: 768px) {

    .login-page {
        width: 100%;
        padding: 20px;
        gap: 10px;
    }

    .back-arrow {
        margin-top: 20px;
        padding: 0;
        width: 40px;
        height: 40px;
        margin: 10px;
    }

    .login-container-ferragamo {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 30px 20px;
        box-shadow: none;
    }

    .left-container-ferragamo {
        width: 100%;
    }

    .left-container-ferragamo img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 10px;
    }

    .right-container-ferragamo {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        height: auto;
    }

    .right-container-ferragamo h1 {
        font-size: 26px;
        text-align: center;
        justify-content: center;
    }

}