    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Heebo', sans-serif;
        background-color: #e0f7fa;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        padding: 20px;
        color: #333;
    }
    
    .header {
        background-color: #00796b;
        color: white;
        padding: 20px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .container {
        display: flex;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        max-width: 1200px;
        width: 100%;
        overflow: hidden;
    }
    
    .content {
        flex: 1.5;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .content h2 {
        font-size: 2em;
        color: #00796b;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 1.1em;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .form-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .form {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-control {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .form-control label {
        margin-bottom: 8px;
        font-weight: 700;
        color: #00796b;
    }
    
    .form-control input[type="text"],
    .form-control input[type="email"] {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1em;
        transition: border-color 0.3s ease;
    }
    
    .form-control input[type="text"]:focus,
    .form-control input[type="email"]:focus {
        border-color: #00796b;
    }
    
    .form-control-submit {
        text-align: center;
    }
    
    .form-control-submit input[type="submit"] {
        background-color: #00796b;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1em;
        transition: background-color 0.3s ease;
    }
    
    .form-control-submit input[type="submit"]:hover {
        background-color: #004d40;
    }
    
    .image-container {
        flex: 1;
        overflow: hidden;
    }
    
    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    footer {
        background-color: #00796b;
        color: white;
        padding: 20px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }
    
    @media (max-width: 768px) {
        .container {
            flex-direction: column;
        }
    
        .content {
            padding: 20px;
        }
    
        .form {
            max-width: 90%;
        }
    }
    