
/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #202F5B;
}

.main-container {
    display: flex;
    width: 500px;
    height: 550px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
}
.g_id_signin {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Image Section Styling */
.image-section {
    width: 50%;
    background-color: #202E5B;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.image-section img {
    max-width: 100%;
    height:fit-content;
    border-right: 0 solid #ddd;
}

/* Form Section Styling */
.form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 80%;
}

.toggle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.toggle button {
    flex: 1;
    padding: 10px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin: 0 5px;
}

.toggle button.active {
    background-color: #333;
}

.form {
    display: flex;
    flex-direction: column;
}

.form h2 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.form label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #666;
}

.form input {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    transition: border-color 0.3s;
}

.form input:focus {
    border-color: #ff6600;
}

.form button {
    padding: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.form button:hover {
    background-color: #45a049;
}

.error {
    color: red;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .image-section {
        width: 100%;
        height: 250px;
    }

    .form-section {
        width: 100%;
    }
}