* {
    padding: 0px;
    margin: 0px;
}

html,
body {
    height: 100vh;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--body-background-color);
    color: var(--text-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: var(--background-white);
    padding: 10px 0px 10px;
    color: var(--text-color1);
    border-radius: 7px;
}

.card .row {
    height: 65px;
}

.card img {
    width: 120px;
    margin: 10px;
}

.btn-light {
    background-color: var(--btn-login-color);
}

.card .card-body input {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #c7c7c7;
    background: none;
    box-shadow: none;
    color: var(--text-color1)
}

.card .card-body select {
    position: relative;
    /* top: -30px; */
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #c7c7c7;
    background: none;
    box-shadow: none;
    color: var(--text-color1);
}

.card .card-body label {
    position: relative;
    top: -32px;
    margin-left: 10px;
    transition: ease-in-out .3s;
}

.card .card-body input:focus~label,
.card .card-body input:valid~label {
    top: -62px;
    margin-left: 0px;
}

.btn-light {
    border: none;
    color: #fff;
    transition: ease-in-out .3s;
}

.card .card-body a {
    text-decoration: none;
    color: var(--text-color1);
    transition: ease-in-out .3s;
}

.card .card-body a:hover {
    color: var(--text-color2);
}

.card .card-body .passForgot {
    font-size: 14px;
    margin: 10px;
}

.card p {
    position: relative;
    font-size: 10px;
    bottom: 0px;
    margin: 0px;
}

/* modal */
.modal .modal-header {
    background-color: var(--btn-login-color);
    color: #fff;
}

.modal .modal-content {
    border: none;
    background-color: var(--card-background-color);
}

.modal .modal-content .modal-body input {
    border-radius: 0px;
    border: none;
    background: none;
    border-bottom: 1px solid #c7c7c7;
    box-shadow: none;
    color: #fff;
}





/* Mobile */
@media (max-width: 500px) {
    body {
        background-color: var(--background-white);
    }

    .card {
        border: none;
        background: none;
    }

    .modal .modal-content .modal-header h4 {
        font-size: 22px;

    }


}