body {
    background: linear-gradient(to right, #e6ebff, #ffffff); /* Light blue to white */  /* Other body styles */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem; /* Increased gap */
}

.login-container {
    background-color: #fff;
    padding: 3rem; /* Increased padding */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* More pronounced shadow */
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-container h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.login-container label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #777;
    font-size: 1.1rem;
}

.login-container input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.login-container input:focus {
    outline: none;
    border-color: #3498db;
}

.login-container button {
    width: 100%;
    padding: 1.2rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-container button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-container a:hover {
    text-decoration: underline;
    color: #2980b9;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    color: #777;
    font-size: 1rem;
}

.checkbox-container input {
    width: auto;
    margin: 0 0.75rem 0 0;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .logo {
        flex: none;
        width: 90%;
        max-width: 400px;
    }

    .logo img {
        max-height: 400px;
    }

    .login-container {
        padding: 2.5rem;
        max-width: 95%;
    }

    .login-container h1 {
        font-size: 2.2rem;
    }

    .login-container input,
    .login-container button {
        padding: 0.8rem;
        font-size: 1rem;
    }
}
