* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    background-color: #f4f4f4;
}

.container {
    display: flex;
    width: 80%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.left-section {
    width: 50%;
    background-color: #0061f2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-image: url(image.png);
    background-size: 140%;
    background-repeat: no-repeat;
}

.left-section .logo h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.left-section h1 {
    font-size: 28px;
    margin-bottom: 30px;
}

.left-section img {
    width: 100%;
    max-width: 300px;
}

.right-section {
    width: 50%;
    padding: 40px;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-container p {
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.input-group input {
    width: 48%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #0061f2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #004bb2;
}

.login-link {
    text-align: center;
    margin-top: 15px;
}

.login-link a {
    color: #0061f2;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
    }
    
    .left-section, .right-section {
        width: 100%;
    }

    .left-section {
        padding: 10px;
    }

    .right-section {
        padding: 20px;
    }
    
    .input-group {
        flex-direction: column;
    }

    .input-group input {
        width: 100%;
        margin-bottom: 10px;
    }
}
