.custom-btn{
    background: #FF5454;
    color:#fff;
    padding: 10px 30px;
    border-radius: 5px;
    width: 100%;
    border:none;
}
.custom-btn:hover{
    background: #fa3939;
    box-shadow: 0 0px 10px rgba(0,0,0,0.3);
    color:#fff;
}
.custom-btn-stroke{
    border: 2px solid #fa3939;
    color:#fa3939;
    border-radius: 5px;
    padding: 10px 30px;
    width: 100%;
    background: transparent;
}
.custom-btn-stroke:hover{
    box-shadow: 0 0px 10px rgba(0,0,0,0.3);
    background: #fa3939;
    color:#fff;
}


.login-form-container{
    padding: 20px;
    box-shadow: 0 0 5px #c6c6c6;
}

.custom-link-text{
    color:#1e74bb !important;
    text-decoration: none;
    text-align: center;
}
.custom-link-text:hover{
    color:#1e74bb !important;
}

.signup-page{
    animation:fadeIn 300ms linear forwards
}


/* Animation */
@keyframes fadeIn {
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}