.form {
    background: url(./../img/img-form-desktop-_1_.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 90vh;
}

form {
    max-width: 400px;
    margin: 0px auto 0 auto;
    padding-bottom: 65px;
    padding-bottom: 40px;
    padding: 5px;

}

h2 {
    padding-top: 50px;
    color: #353031;
    margin-top: 0px;

}

label {
    display: block;
    margin-bottom: 5px;
    color: white;
    text-shadow: -5px 0px 17px #000000;
}

.input-width {
    width: 80%;
}

textarea {
    width: 100%;
}

input,
textarea {
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.label-condolence {
    color: #353031;
}

div {
    margin-bottom: 0px;
}

button {
    background-color: #039DB5;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #037b8d;
}

.main-link {
    margin-bottom: 10px;
    width: 50%;
}

.family-name {
    margin-bottom: 10px;
    width: 50%;

}

/* display Icon for see password */
label input:focus {
    border-color: #ff4754;
}

label .password-icon:hover {
    cursor: pointer;
    color: #ff4754;
}

label .password-icon .feather-eye-off {
    display: none;
}

/* Responsive styles for mobile */
@media screen and (max-width: 600px) {

    /* .form{
        background: url(./../img/img-form-desktop.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    } */
    form {
        max-width: 100%;
    }

    .input-width {
        width: 60%;
        margin-left: 15px;
    }

    textarea {
        width: 80%;
        margin-left: 15px;
    }

    label {
        margin-left: 10px;
    }

    button {
        color: white;
        padding: 10px 25px;
        background: #039DB5;
        border-radius: 30px;
    
}
.form {
    max-height: 100%;
}
}