body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}
.form {
    background-color: #2C74B3;
    padding: 30px;
    
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    width: 400px;
    display: none;
}
.form.active {
    display: block;
}
.form h2 {
    margin-top: 0;
    margin-bottom: 20px;
}
.form input[type="text"], .form input[type="password"], .form input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.form button {
    background-color: #0A2647;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.form button:hover {
    background-color: #0A2647;
}
.form .toggle {
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
}
.form .toggle:hover {
    color: #0A2647;
}
.form .error-message {
    color: red;
    margin-bottom: 10px;
}

#main{
    display: flex;
}
#left{
    width: 47%;
    /* display: block; */
    margin-right: 10%;
}
#left img{
    width: 100%;
    margin-top: 17%;
    margin-left: 5%;
}

@media screen and (max-width: 600px) {
    #main{
        flex-direction: column;
    }
}



@media screen and (max-width: 950px) {
    #main{
        flex-direction: column;
    }
}
