/* =====================================================
   Project : The Aryavrat
   File    : login.css
   Version : 1.0
====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html,
body{
    width:100%;
    height:100%;
}

body{

    background:linear-gradient(135deg,#0F172A,#1E3A8A,#2563EB);

    overflow:hidden;

    position:relative;

    color:#fff;

}

/* ===========================
Background Animation
=========================== */

.bg-animation{

    position:fixed;

    width:100%;

    height:100%;

    top:0;

    left:0;

    overflow:hidden;

    z-index:1;

}

.circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 15s infinite linear;

    filter:blur(1px);

}

.c1{

    width:250px;

    height:250px;

    top:-80px;

    left:-60px;

}

.c2{

    width:180px;

    height:180px;

    right:-60px;

    top:20%;

}

.c3{

    width:280px;

    height:280px;

    bottom:-100px;

    left:18%;

}

.c4{

    width:150px;

    height:150px;

    right:18%;

    bottom:80px;

}

@keyframes float{

0%{

transform:translateY(0px) rotate(0deg);

}

50%{

transform:translateY(-30px) rotate(180deg);

}

100%{

transform:translateY(0px) rotate(360deg);

}

}

/* ===========================
Login Card
=========================== */

.login-card{

    position:relative;

    z-index:10;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:45px;

    box-shadow:

    0 25px 50px rgba(0,0,0,.35);

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ===========================
Logo
=========================== */

.logo{

    width:95px;

    height:95px;

    object-fit:contain;

    margin-bottom:15px;

}

.title{

    font-size:30px;

    font-weight:700;

    margin-bottom:5px;

}

.subtitle{

    color:#d7d7d7;

    font-size:15px;

    margin-bottom:10px;

}

/* ===========================
Inputs
=========================== */

.form-control{

    background:rgba(255,255,255,.08)!important;

    border:1px solid rgba(255,255,255,.20);

    color:#fff!important;

    height:58px;

    border-radius:14px;

    padding-right:50px;

}

.form-control:focus{

    box-shadow:none;

    border-color:#4F8BFF;

}

.form-floating label{

    color:#ddd;

}

.form-control::placeholder{

    color:#ddd;

}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label{

    color:#ffffff;

}

/* ===========================
Password Eye
=========================== */

.toggle-password{

    position:absolute;

    right:18px;

    top:18px;

    cursor:pointer;

    color:#fff;

    z-index:100;

}

/* ===========================
Remember
=========================== */

.form-check-input{

    cursor:pointer;

}

.form-check-label{

    color:#ddd;

}

.forgot-link{

    text-decoration:none;

    color:#8dc4ff;

    font-size:14px;

}

.forgot-link:hover{

    color:#fff;

}

/* ===========================
Button
=========================== */

.login-btn{

    height:56px;

    border:none;

    border-radius:14px;

    font-size:17px;

    font-weight:600;

    background:linear-gradient(45deg,#2563EB,#3B82F6);

    transition:.35s;

    color:#fff;

}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(37,99,235,.45);

}

/* ===========================
Alerts
=========================== */

.alert{

    border:none;

    border-radius:12px;

}

/* ===========================
Footer
=========================== */

.version{

    margin-top:15px;

    margin-bottom:0;

    color:#ddd;

    font-size:14px;

}

.copyright{

    font-size:13px;

    color:#bbb;

}

/* ===========================
Responsive
=========================== */

@media(max-width:768px){

.login-card{

padding:30px;

}

.title{

font-size:25px;

}

.logo{

width:80px;

height:80px;

}

}

@media(max-width:480px){

.login-card{

padding:22px;

}

.title{

font-size:22px;

}

.subtitle{

font-size:13px;

}

.login-btn{

font-size:16px;

}

}