@import url('https://fonts.googleapis.com/css2?family=Numans&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    font-family:'Numans', sans-serif;

    /* 2 Color Background */
    background: linear-gradient(135deg, #fff 0%, #ff5800 100%);
    background-repeat:no-repeat;
    background-size:cover;
}

/* Container */
.container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}
.password-toggle{
    background:#ff5800;
    border:1px solid #ff5800;
    cursor:pointer;
}

.password-toggle i{
    color:#fff;
    font-size:16px;
}



/* Login Card */
.card{
    width:100%;
    max-width:440px;
    background:#ffffff;
    border:none;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
    overflow:hidden;
}

/* Header */
.card-header{
    background:#ffffff;
    border-bottom:none;
    text-align:center;
    padding:30px 20px 15px;
    position:relative;
}

.card-header h3{
    color:#011b4b;
    font-size:32px;
    font-weight:bold;
}

/* Social Icons */
.social_icon{
    position:absolute;
    right:20px;
    top:-25px;
}

.social_icon span{
    font-size:50px;
    margin-left:10px;
    color:#ff5800;
    transition:all 0.3s ease;
}

.social_icon span:hover{
    color:#011b4b;
    cursor:pointer;
    transform:translateY(-3px);
}

/* Body */
.card-body{
    padding:25px;
}

/* Input Group */
.input-group{
    margin-bottom:18px;
}

.input-group-prepend span{
    width:50px;
    background:#ff5800;
    color:#ffffff;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Inputs */
.form-control{
    height:50px;
    border:1px solid #dcdcdc;
    border-left:none;
    border-radius:0 5px 5px 0;
}

.form-control:focus{
    border-color:#ff5800;
    outline:none;
    box-shadow:none;
}

/* Remember Me */
.remember{
    color:#555;
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.remember input{
    width:18px;
    height:18px;
    margin-right:8px;
}

/* Login Button */
.login_btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:5px;
    background:#ff5800;
    color:#ffffff;
    font-size:18px;
    font-weight:bold;
    transition:all 0.3s ease;
}

.login_btn:hover{
    background:#ff5800;
    color:#ffffff;
}

/* Footer */
.card-footer{
    background:#ffffff;
    border-top:none;
    text-align:center;
    padding:20px;
}

.links{
    color:#555;
    font-weight:bold;
}

.links a{
    color:#ff5800;
    text-decoration:none;
    margin-left:5px;
}

.links a:hover{
    color:#011b4b;
    text-decoration:underline;
}

/* Responsive */
@media (max-width:576px){

    .card{
        max-width:100%;
    }

    .card-header h3{
        font-size:28px;
    }

    .social_icon span{
        font-size:40px;
    }

    .card-body{
        padding:20px;
    }
}