/* login.css - Simple & Clean */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
}

.container {
    display: flex;
    height: 100vh;
}

/* Left Section */
.left-section {
    flex: 1;
    background: #f0f8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Section */
.right-section {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.return-link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #4caf50;
    text-decoration: none;
    font-size: 14px;
}

.logo {
    font-size: 24px;
    color: #4caf50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

/* Form */
.login-form {
    max-width: 350px;
    margin: 0 auto;
}

.form-login {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
}

.form-group,
.password {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #4caf50;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-button:hover {
    background: #45a049;
}

.signup-link {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.signup-link a {
    color: #4caf50;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-section {
        height: 30%;
    }
    
    .right-section {
        height: 70%;
        padding: 20px;
    }
}