* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,body{
    position: relative;
    top: 0;
    bottom: 0;
}

h1, h2, h3, h4,h5{
    font-family: Poppins, system-ui, sans-serif;
}

.container {
    display: flex;
    height: 100%;
}

/* LEFT SIDE */
.left {
    flex: 1;
    background: url("../../assets/images/login-img.webp") center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    color: white;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.overlay p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.overlay ul {
    margin-bottom: 30px;
}

.overlay ul li {
    margin-bottom: 10px;
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.overlay ul .listDiv{
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 20px 10px;
}

.overlay ul .listIcon {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.3);

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    color: white;
    font-size: 19px;
    margin-right:20px;
}

.stats {
    display: flex;
    gap: 15px;
}

.stats .box {
    padding: 20px;
    width: 150px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    color: white;
    transition: all 0.35s ease;
}

.stats .box h2 {
    font-size: 24px;
    font-weight: bold;
}

.stats .box p {
    font-size: 14px;
    opacity: 0.8;
}

.stats .box:hover {
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.15)
    );

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 15px 35px rgba(0,0,0,0.35);

    transform: scale(1.03);
}

/* RIGHT SIDE */
.right {
    flex: 0.9;
    background: #f4faf3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: white;
    padding: 30px;
    width: 75%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 30px;
}

.sub {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    color: #6b7280;
}

/*-----------------------form-----------------------------*/
form{
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
    box-sizing: border-box;
}

form label{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 10px;
    margin-bottom: 7px;
}

form input,
form select{
    width: 100%;
    height: 45px;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    padding: 0 15px;
    font-size: 16px;
    color: #111827;
    background: #ffffff;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s ease;
}

form input::placeholder{
    color: #9ca3af;
    font-size: 14px;
}

form input:focus,
form select:focus{
    background-color: #f4faf3;
    outline:none;
}

/* ---------Checkbox row ----------*/
.row{
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.row label{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.row label span{
    color: #5BA84C;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.row input[type="checkbox"]{
    width: 18px;
    height: 18px;
    accent-color: #4f46e5;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 12px;
}

.row label{
    display: flex;
    justify-content: center;
    align-items: center;
    text-wrap: nowrap;
    gap:10px;

}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(to bottom, #5BA84C, #4A9A3F);
    box-shadow: 0 8px 20px rgba(74, 154, 63, 0.4);
    cursor: pointer;
    font-family: Poppins, system-ui, sans-serif;
    transition: all .2s ease-in;
    margin: 15px 0;
}

button:hover{
    transform: translateY(-3px) scale(1.001);
    box-shadow: 0 15px 30px rgba(74, 154, 63, 0.5);
}


.bottom {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.bottom a {
    color: green;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.bottom a:hover{
    color: #4A9A3F;
}



/*------------------------------signin-------------------------------------------*/

.right{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding:20px 0;
}

.header{
    text-align: center;
    margin: 20px 0 20px 0;
}

.header .headerTitle{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header .headerTitle .logoImage img{
    background-position: center;
    background-size: contain;
    height: 50px;
    width: 50px;
    border-radius: 15px;
}

.header .headerTitle h2{
    font-weight: 600;
}

.header .HeaderSub{
    color: #6b7280;
    font-size: 16px;
}

.error span{
    color: red;
    margin: 5px 0 10px 0;
}

.captcha-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.g-recaptcha{
    transform-origin: center;
}
