/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body styling */
body {
    background-color: #f1f3f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Main container */
.wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    max-width: 1200px;
}

/* Left section styling */
.left-section {
    width: 40%;
    background: #2874f0;
    color: white;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.left-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.left-section img {
    max-width: 80%;
    height: auto;
}

/* Right section styling */
.right-section {
    width: 60%;
    padding: 40px;
    background-color: white;
}

.right-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form styling */
form input, form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form input:focus, form select:focus {
    border-color: #2874f0;
    outline: none;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #fb641b;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e55b13;
}

/* Links */
.links {
    text-align: center;
    margin-top: 20px;
}

.links a {
    color: #2874f0;
    text-decoration: none;
    font-weight: bold;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wrapper {
        flex-direction: column;
        max-width: 100%;
    }

    .left-section, .right-section {
        width: 100%;
        padding: 20px;
    }

    .left-section img {
        max-width: 70%;
    }

    .right-section h2 {
        font-size: 22px;
    }

    form input, form select, button {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .left-section {
        padding: 20px;
    }

    .right-section {
        padding: 15px;
    }

    .left-section h2 {
        font-size: 20px;
    }

    .left-section p {
        font-size: 14px;
    }

    .left-section img {
        max-width: 90%;
    }

    .right-section h2 {
        font-size: 20px;
    }

    form input, form select, button {
        padding: 10px;
    }

    button {
        font-size: 14px;
    }
}
/* Logo styling */
.left-section .logo img {
    width: 120px; /* Set a fixed width for the logo */
    height: 120px; /* Set the same height to make it square */
    border-radius: 50%; /* This will make the logo circular */
    object-fit: cover; /* Ensures the image covers the container area without distortion */
}
