/* Body */
.login-body {
    min-height: 100vh;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Left Column - Branding */
.login-left {
    
    background-color: #ffffff; /* full white */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-left h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.login-image {
    max-width: 80%;
    height: auto;
}

/* Right Column - Form */
.login-right {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.login-form-container h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.login-form-container form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.login-form-container form button {
    background-color: #28a745;
    border-color: #28a745;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.login-form-container form button:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Back Button - Transparent Style */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 14px;
    background-color: rgba(0, 123, 255, 0.05);
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

.back-btn:hover {
    background-color: rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.back-btn i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .login-left {
        display: none;
    }
    .login-right {
        padding: 20px;
    }
}


/* Clinisys Logo on top of form */
.form-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}


/* Home Button - Transparent Style */
.home-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 12px;
    background-color: rgba(0, 123, 255, 0.05);
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 6px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

.home-btn:hover {
    background-color: rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.home-btn i {
    font-size: 1rem;
}