
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
}

.nav-link{
    color: #444;
    font-weight: 500;
    margin: 0 10px;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active{
    color: #419B92;
}

.navbar-brand{
    height:70px;
    display:flex;
    align-items:center;
}

.navbar-brand img{
    width:130px;
    max-height:60px;
    object-fit:contain;
}


.navbar-brand img:hover{
    transform: scale(1.05);
}


.btn-contact{
    background-color: #419B92;
    border: 1px solid #419B92;
    border-radius: 15px;
    color: white;
    transition: .3s;
}


.btn-contact:hover{
    background-color: white;
    color: #419B92;
    border: 1px solid #419B92;
}


.welcome-title{
    color:rgb(65,155,146);
}

/*l side*/
.left{
    height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.doctor{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:20px;
}


/*r side*/
.login-card{
    width:100%;
    min-height:600px;
    justify-content:center;
}

.login-card:hover{
    transform: translateY(-5px);
}

.form-control{
    height: 50px;
}

.form-control:focus{
    border-color:#419B92;
    box-shadow:none;
}

.btn-login {
    text-align: center;
    background-color:#419B92;
    border:none;
}
.btn-login span{
margin: auto ;
}
.btn-login:hover{
    background-color:#357F78;
    color:white;
}


.login-card a{
    color:#419B92;
}

.login-card a:hover{
    color:#357F78;
}

.form-check-input:checked{
    background-color:#419B92;
    border-color:#419B92;
}

.social-btn{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #419B92 ;
    background-color:#fff;
    transition:.3s;
}

.social-btn i{
    color:#419B92;
    font-size:20px;
}

.social-btn:hover{
    background-color:#419B92;
}

.social-btn:hover i{
    color:#fff;
}

/*animation*/
@keyframes leftMove{

    from{
        opacity: 0;
        transform: translateX(-50px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes rightMove{

    from{
        opacity: 0;
        transform: translateX(50px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}

/*tablet*/
@media(max-width:991px){

    .left{
        margin-bottom:40px;
    }

    .doctor{
        width:60%;
    }
}   

/*mobile*/
@media(max-width:767px){

    .doctor{
        width:75%;
    }

    .login-card{
        padding:25px;
    }

}


.error{
    color: red;
    font-size: 14px;
}

.success{
    color: green;
    font-size: 14px;
}


/*success*/

.success-modal{

    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-content{
    width:420px;
    background:white;
    border-radius:10px;
    text-align:center;
    padding:40px 30px;
    animation: popup .3s ease;
}

.check-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    border:5px solid #419B92;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
}

.check-circle i{
    font-size:55px;
    color:#419B92;
}

.modal-content h2{
    margin-top:35px;
    color:#555;
    font-weight:bold;
}

.modal-content p{
    color:#666;
    font-size:18px;
    margin:20px 0;
}

.modal-content button{
    display: block;
    margin: 20px auto 0;
    width:60px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#419B92;
    color:white;
    font-size:16px;
    cursor:pointer;
}


.modal-content button:hover{
    background:#357F78;
}

@keyframes popup{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}
@media (max-width: 560px) {
    .left{
        display: none;
}
}