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

/* Full page container */
body, html {
    height: 100%;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Left Side: Login Form Styling */
.login-content {
    flex: 1;
    padding: 50px;
    background-color: #f7f8fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.login-content label {
    font-size: 0.9rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 5px;
}

.login-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #0056b3;
}

.forgot-password {
    display: block;
    margin-top: 15px;
    color: #007bff;
    text-align: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #0056b3;
}

/* Right Side: Image Styling */
.login-image {
    flex: 1;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.login-image1 {
    flex: 1;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.login-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-image img {
    width: auto;
    height: 20%;
    object-fit: cover;
}
