* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
}

.login-container {
    display: flex;
    height: 100vh;
}

.left-panel {
    flex: 1.2;
    background: linear-gradient(rgba(0, 100, 0, 0.8), rgba(0, 100, 0, 0.8)), 
    url('leftpanel.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    padding: 40px;
}

.logo {
    width: 200px;
}

.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.form-wrapper {
    width: 80%;
    max-width: 400px;
}

h1 {
    color: #006400; 
    font-size: 2.5rem;
    margin-bottom: 5px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.form-footer {
    text-align: right;
    margin-bottom: 30px;
}

.forgot-pass {
    color: #006400;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background-color: #004d00;
}