* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    height: 100vh;
    background-color: #f5f5f5;
}

.image-section {
    flex: 1;
    background-color: lightskyblue;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.image-section img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.login-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #4CAF50;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background-color: #2614a9;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #0b17a2;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #333;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    
    .image-section {
        flex: none;
        height: 200px;
    }
    
    .login-section {
        flex: none;
        padding: 30px 20px;
    }
}

form label {
    color: #0000FF; 
}