* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Arial', sans-serif;
    background: url('img/background.png') no-repeat fixed;
    background-size: cover;
    background-position: center left; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Lato';
}

        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            max-width: 1200px;
            width: 90%;
        }
        
        .illustration {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 300px;
            width: 100%;
            max-width: 600px;
            height: auto;
        }
        
        .illustration img {
            background-size: contain;
            min-height: 300px;
            width: 100%;
            max-width: 600px;
            height: auto;
        }
        
        .form-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
        }
        
        .logo img {
            width: 60px;
        }
        
        .form-section h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
        }
        
        .form-background {
            width: 100%;
            padding: 20px;
            background-color: #f4f4f4;
            border-radius: 10px;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        form {
            width: 100%;
        }
        
        form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
            margin-top: 10px
        }
        
        form button {
            width: 100%;
            padding: 12px;
            background-color: #4a90e2;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .login-form {
            background-color: #C2CEF3;
            padding: 20px;
            border-radius: 5%;
            width: 400px;
        }

        form button:hover {
            background-color: #357abd;
        }
        
        form a {
            display: block;
            font-size: 14px;
            color: #4a90e2;
            text-decoration: none;
            margin-top: 10px;
        }
        
        form a:hover {
            text-decoration: underline;
        }
        

/* Responsive */

        @media (max-width: 768px) {
            body {
                background: url('img/resp-background.png') no-repeat center center fixed;
                background-size: cover;
            }
        
            .container {
                flex-direction: column;
                align-items: center;
                padding: 20px;
            }
        
            .illustration {
                max-width: 100%;
                height: auto;
                margin-bottom: 20px;
            }
            
           
            .form-section {
                padding: 20px;
                max-width: 100%;
            }
        
            form button {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .form-section h1 {
                font-size: 24px;
            }
        
            form input, form button {
                font-size: 14px;
                padding: 10px;
            }
        
            .logo img {
                width: 50px;
            }
        }
        @media (min-width: 1024px) {
            .illustration img {
                max-width: 900px; 
                width: auto;     
            }
        }
        