body {            
    background-image: url('../images/ivory_curves_new.png');
    background-size: cover;
    font-family: Nunito;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.card {
    background: rgb(255, 255, 255, .4);
    border: none;
    box-shadow: .5px .5px 5px -1px #000000;
    width: 20rem;
    border-radius: 20px !important; 
}

.active {
    background: rgb(255, 255, 255, .6) !important;
}


.nav-sign-in .nav-link{
    border-top-left-radius: 20px !important;
    border-top-right-radius: 0 !important;
}

.nav-reg .nav-link{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 20px !important;
}

.nav .nav-link:hover{
    background: #e6e6e6;
}

.c-input {
    padding-left: 35px;
    border: 2px solid #bfbfbf;
    border-radius: 10px;
}

.c-input:focus {
    box-shadow: none;
    border: 2px solid #595959;
}

.c-icon {
    position:absolute; 
    z-index:999; 
    top:5px; 
    left:10px; 
    color:#999999;
}

.c-icon2 {
    position:absolute; 
    z-index:999; 
    top:5px; 
    right: 10px; 
    color:#00cc66;
}

/* .c-icon3 {
    position:absolute; 
    z-index:999; 
    top:5px; 
    right: 10px; 
    color:#00cc66;
} */

p {
    font-size: 13px;
}

.invalid {
    border: 2px solid #ff8080 !important;
}

.valid {
    border: 2px solid #00cc66 !important;
}

.login-grad {background-image: linear-gradient(to right, #AA076B 0%, #61045F  51%, #AA076B  100%)}
.login-grad {
    padding: 5px 20px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 10px;
    display: block;
    border: none;
}

.login-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.vs-grad {background-image: linear-gradient(to right, #134E5E 0%, #71B280  51%, #134E5E  100%)}
.vs-grad {
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.vs-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.vc-grad {background-image: linear-gradient(to right, #C04848 0%, #480048  51%, #C04848  100%)}
.vc-grad {
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.vc-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}


.reg-grad {background-image: linear-gradient(to right, #24C6DC 0%, #514A9D  51%, #24C6DC  100%)}
.reg-grad {
    padding: 5px 20px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 10px;
    display: block;
    border: none;
}

.reg-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.label-size {
    font-size:14px;
}

.nav-link  {
    cursor: pointer;
}

@keyframes slideUp {
    from {
        transform: translateY(10%);
        opacity: 0;
    }
        
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#sign_in_form, #reg_form{
    animation: slideUp 1s ease-out;
}

@media (max-width: 990px) { 
    .card {
        width: 100%;
    }
}