.login-section {
    flex: 0 0 300px;
    margin-right: 20px;
}

.login-form-container {
    max-width: 300px;
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.login-form-container h2 {
    color: #006400;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-group input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #006400;
    padding: 5px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-button:hover {
    background-color: #00a86b;
}

.form-links {
    text-align: right;
    margin-bottom: 15px;
}

.form-links a {
    color: #006400;
    text-decoration: none;
    font-size: 14px;
}

.register-link {
    margin-top: 20px;
    text-align: center;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .content-wrapper {
        padding: 20px;
    }
    
    .login-section {
        flex: 0 0 280px;
    }
}

@media screen and (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .login-section {
        flex: none;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .login-form-container {
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .login-form-container {
        max-width: 100%;
        margin: 0 10px;
        padding: 15px;
    }

    .login-form-container h2 {
        font-size: 20px;
    }

    .form-group input,
    .login-button {
        padding: 10px;
        font-size: 14px;
    }

    .form-links,
    .register-link {
        font-size: 13px;
    }
}