body {
    background-color: #0b1930;
    height: 100vh!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    position: relative!important;
    overflow: hidden!important;
}

/* --- Background Decorative Circles --- */

/* --- Main Login Card Layout --- */
.login-container {
    padding: 20px;
    z-index: 1;
}

.bg-regi{
	padding: 30px;
	background-color: #fff;
	border-radius: 30px;
}
.login-card {
    display: flex!important;
    width: 900px!important;
    max-width: 100%;
    height: 550px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
  
}
.login-card-register {
    display: flex!important;
    width: auto;
    max-width: 100%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* --- Left Side (Image) --- */
.login-left {
    flex: 1;
    /* REPLACE THE URL BELOW WITH YOUR ACTUAL IMAGE PATH */
    background-image: url('../images/background/login.png'); 
    background-size: cover!important;
    background-position: center!important;
    position: relative!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    text-align: center!important;
    color: white;
}

.login-left-forget {
    flex: 1;
    /* REPLACE THE URL BELOW WITH YOUR ACTUAL IMAGE PATH */
    background-image: url('../images/background/forget.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.login-left-register {
    flex: 1;
    /* REPLACE THE URL BELOW WITH YOUR ACTUAL IMAGE PATH */
    background-image: url('../images/background/register.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Gradient Overlay so text is readable */
.login-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.content-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.content-overlay h1 {
    font-family: 'Dancing Script', cursive; /* Script font */
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.content-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* --- Right Side (Form) --- */
.login-right {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    position: relative; /* For footer graphics positioning */
}
.login-right-register {
    
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #2C2A49;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-header p {
    color: #808080;
    font-size: 0.9rem;
	line-height: normal;
	margin-top: 10px;
}

/* Form Styling */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.login-form-register {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Custom Input Style with intersecting label */
.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px; /* Extra left padding for icon */
    border: 1px solid #dce7ed;
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #2C2A49;
}

.input-group input::placeholder {
    color: #aaa;
    font-weight: 500;
}

/* The label sits on top of the border */
.input-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: #fff;
    padding: 0 5px;
    font-size: 0.8rem;
    color: #2C2A49;
    font-weight: 500;
}

.input-group .icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #333;
    font-size: 1.1rem;
}

.forgot-pass {
    text-align: right;
    font-size: 0.8rem;
    color: #808080;
    text-decoration: none;
    margin-top: -10px;
    margin-bottom: 10px;
}

.btn-login {
    padding: 12px;
    background-color: #2C2A49;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color:#EDBD1F;
}

/* Register Link */
.register-link {
    text-align: center;
    font-size: 0.85rem;
    color: #808080;
    z-index: 2; /* Ensure it's above graphics */
}

.register-link a {
    color: #2C2A49;
    text-decoration: none;
    font-weight: 600;
}

/* Footer Graphics (CSS placeholders for where images should go) */
.footer-graphics {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    pointer-events: none; /* Let clicks pass through to links */
    overflow: hidden;
}


/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
        height: auto;
    }
    .login-left {
        min-height: 200px;
    }
    .content-overlay h1 {
        font-size: 2.5rem;
    }
    .login-right {
        padding: 30px 20px;
    }
}