
/*-------login_form--------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


.login_form_container
{
    display:flex;
        background: linear-gradient(135deg, #ff7300, #7f4907);
        padding:50px;
}

/* LEFT SIDE (BRANDING) */
.left
{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 0px 60px rgba(225, 225, 225, 0.5);
    border-radius: 15px;
}

.left h1{
    font-size:40px;
    z-index:1;
}

.left p{
    margin-top:10px;
    font-size:14px;
    opacity:0.9;
    z-index:1;
}

/* glowing circles */
.left::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#fff;
    opacity:0.1;
    border-radius:50%;
    top:-50px;
    left:-50px;
}

.left::after{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#fff;
    opacity:0.1;
    border-radius:50%;
    bottom:-50px;
    right:-50px;
}

/* RIGHT SIDE (FORM) */
.right{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* LOGIN CARD */
.login-card{
    width:350px;
    padding:35px;
    border-radius:20px;
    background:#111122;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
    animation:fadeIn 1s ease;
}

/* TITLE */
.login-card h3
{
   color: #fff;
   margin-bottom: 20px;
   font-size: 23px;
}

/* INPUT */
.input-group{
    margin:15px 0;
}

.input-group input{
    width:100%;
    padding:11px 15px;
    border:none;
    outline:none;
    border-radius:10px;
    background:#1a1a2b;
    color:#fff;
    transition:0.3s;
    border:1px solid transparent;
    font-size: 15px;
}

.input-group input:focus{
    border:1px solid #ff6a00;
}

/* LOGIN BUTTON */
.login-btn
{
    width: 100%;
    padding: 10px 10px;
    background: linear-gradient(45deg, #ff6a00, #ff8c00);
    border: none;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    cursor:pointer;
    transition:0.3s;
}

.login-btn:hover{
    transform:scale(1.05);
}

/* REGISTER LINK */
.register{
    margin-top:20px;
    text-align:center;
    color:#aaa;
    font-size:15px;
}

.register a{
    color:#ff6a00;
    text-decoration:none;
    font-weight:bold;
}

/* ERROR */
.error{
    margin-bottom:5px;
    color:red;
}

/* ANIMATION */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .left{
        display:none;
    }
    .right{
        width:100%;
    }
}

/*-------login_form--------*/


/*----------register----------*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


.login_form_container
{
    display:flex;
        background: linear-gradient(135deg, #ff7300, #7f4907);
        padding:50px;
}

/* LEFT SIDE (BRANDING) */
.left
{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 0px 60px rgba(225, 225, 225, 0.5);
    border-radius: 15px;
}

.left h1{
    font-size:40px;
    z-index:1;
}

.left p{
    margin-top:10px;
    font-size:14px;
    opacity:0.9;
    z-index:1;
}

/* glowing circles */
.left::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#fff;
    opacity:0.1;
    border-radius:50%;
    top:-50px;
    left:-50px;
}

.left::after{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#fff;
    opacity:0.1;
    border-radius:50%;
    bottom:-50px;
    right:-50px;
}

/* RIGHT SIDE (FORM) */
.right{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* LOGIN CARD */
.login-card{
    width:350px;
    padding:25px;
    border-radius:20px;
    background:#111122;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
    animation:fadeIn 1s ease;
}

/* TITLE */
.login-card h3{
    color:#fff;
    margin-bottom:25px;
    font-size: 23px;
}

/* INPUT */
.input-group
{
 margin:15px 0;
 border-radius: 10px;
 overflow: hidden;
}

.input-group input
{
    width: 100%;
    padding: 9px 15px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #1a1a2b;
    color: #fff;
    transition: 0.3s;
    border: 1px solid transparent;
    font-size: 15px;
}

.input-group input:focus{
    border:1px solid #ff6a00;
}

/* LOGIN BUTTON */
.login-btn{
    width:100%;
    padding: 10px;
    background:linear-gradient(45deg,#ff6a00,#ff8c00);
    border:none;
    color:#fff;
    border-radius:10px;
    font-size:15px;
    cursor:pointer;
    margin-top:10px;
    transition:0.3s;
}

.login-btn:hover{
    transform:scale(1.05);
}

/* REGISTER LINK */
.register{
    margin-top:20px;
    text-align:center;
    color:#aaa;
    font-size:15px;
}

.register a{
    color:#ff6a00;
    text-decoration:none;
    font-weight:bold;
}

/* ERROR */
.error-text{
    margin-bottom:5px;
    color:red;
}

/* ANIMATION */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .left{
        display:none;
    }
    .right{
        width:100%;
    }
}


/*----------register----------*/
