/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jul 28, 2026, 12:04:25 AM
    Author     : sampath
*/

/* ==========================================================
   RED CHERRIES ACCOUNTING SAAS
   Modern Login CSS
   Version 2.0
========================================================== */

html,
body{
    height:100%;
    margin:0;
    padding:0;
    font-family:"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    background:#f5f7fb;
}

/*----------------------------------------------------------
Background
----------------------------------------------------------*/

.login-page{

    min-height:100vh;

    background:
        linear-gradient(135deg,#fafafa 0%,#eef2f7 100%);

}

/*----------------------------------------------------------
Wrapper
----------------------------------------------------------*/

.login-wrapper{

    display:flex;

    min-height:100vh;

}

/*----------------------------------------------------------
Left Side
----------------------------------------------------------*/

.login-left{

    width:45%;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:60px;

    position:relative;

    overflow:hidden;

}

/* Decorative circles */

.login-left:before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    top:-180px;

    left:-120px;

}

.login-left:after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    bottom:-120px;

    right:-80px;

}

/*----------------------------------------------------------
Brand
----------------------------------------------------------*/

.brand-container{

    position:relative;

    z-index:10;

    max-width:420px;

}

.brand-logo-box{

    width:420px;
    
    height:170px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:40px;

}

.brand-logo{

    max-width:150%;
    max-height:150%;

    width:auto;
    height:auto;

    display:block;
    margin-left: -50px;
}

.brand-title{

    font-size:42px;

    font-weight:300;

    margin-bottom:15px;
    
    color: black;

}

.brand-subtitle{

    font-size:18px;

    opacity:.92;

    line-height:1.7;

    margin-bottom:45px;
    
    color: white;

}

/*----------------------------------------------------------
Features
----------------------------------------------------------*/

.brand-features{

    margin-top:40px;
    
    color: white;

}

.feature{

    margin-bottom:18px;

    font-size:18px;

}

.feature i{

    width:28px;

    color:#fff;

}

/*----------------------------------------------------------
Right Side
----------------------------------------------------------*/

.login-right{

    width:55%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

    background:#f7f8fc;

    flex-direction:column;

}

/*----------------------------------------------------------
Login Card
----------------------------------------------------------*/

.login-card{

    width:100%;

    max-width:460px;

    background:#fff;

    border-radius:18px;

    padding:45px;

    box-shadow:
        0 18px 50px rgba(0,0,0,.10);

}

.login-card h3{

    margin-top:0;

    margin-bottom:10px;

    font-size:34px;

    font-weight:600;

    color:#333;

}

.login-text{

    color:#777;

    margin-bottom:35px;

    font-size:15px;

}

/*----------------------------------------------------------
Form
----------------------------------------------------------*/

.form-group{

    margin-bottom:22px;

}

.form-group label{

    font-weight:600;

    color:#444;

    margin-bottom:8px;

}

/*----------------------------------------------------------
Inputs
----------------------------------------------------------*/

.input-group-addon{

    background:#fafafa;

    border:1px solid #ddd;

    border-right:none;

    color:#999;

}

.form-control{

    height:52px;

    border-radius:0 10px 10px 0;

    border:1px solid #ddd;

    font-size:15px;

    box-shadow:none;

}

.form-control:focus{

    border-color:#e53935;

    box-shadow:
        0 0 0 3px rgba(229,57,53,.12);

}

/*----------------------------------------------------------
Checkbox
----------------------------------------------------------*/

.checkbox{

    margin:20px 0;

}

.checkbox label{

    color:#666;

    font-weight:500;

}

/*----------------------------------------------------------
Button
----------------------------------------------------------*/

.login-btn{

    height:52px;

    border:none;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 12px 25px rgba(229,57,53,.30);

}

.login-btn-red{
    background:linear-gradient(90deg,#e53935,#c62828) !important;
    color:#fff;
}

.login-btn-green{
    background:linear-gradient(90deg,#16a34a,#15803d) !important;
    color:#fff;
}

.login-btn-blue{
    background:linear-gradient(90deg,#2563eb,#1d4ed8) !important;
    color:#fff;
}

.login-btn-fb{
    background:linear-gradient(90deg,#3b5998,#2d4373) !important;
    color:#fff;
}

/*----------------------------------------------------------
Links
----------------------------------------------------------*/

.login-links{

    margin-top:25px;

    text-align:center;

}

.login-links a{

    color:#d32f2f;

    text-decoration:none;

    font-weight:600;

}

.login-links a:hover{

    text-decoration:underline;

}

/*----------------------------------------------------------
Footer
----------------------------------------------------------*/

.login-footer{

    margin-top:35px;

    text-align:center;

    color:#888;

    font-size:13px;

    line-height:1.8;

}

/*----------------------------------------------------------
Responsive
----------------------------------------------------------*/

@media(max-width:991px){

    .login-wrapper{

        flex-direction:column;

    }

    .login-left{

        width:100%;

        padding:40px;

    }

    .login-right{

        width:100%;

        padding:30px;

    }

    .brand-title{

        font-size:34px;
        color: black;

    }

}

@media(max-width:768px){

    .login-left{

        display:none;

    }

    .login-right{

        width:100%;

        min-height:100vh;

        padding:20px;

    }

    .login-card{

        padding:30px;

        border-radius:15px;

    }

    .login-card h3{

        font-size:28px;

    }

}

.login-city{

    position:absolute;

    left:0;

    bottom:0;

    width:95%;

    opacity:.28;

    pointer-events:none;

    z-index:1;

}

.brand-container{

    position:relative;

    z-index:10;

}
