﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    height: 100vh;
    /*background-color: #f4f4f4;*/
}

.container {
    display: flex;
    width: 100%;
}

.left-section {
    width: 50%;
    /*background: linear-gradient(to right, #002f6c, #0057b8);*/
    background: #4A83C3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    text-align: center;
}

    .left-section h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .left-section p {
        font-size: 16px;
        max-width: 400px;
    }

.right-section {
    width: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1);
}
    .right-section .logo {
        max-width: 200px;
        margin-bottom: 20px;
        align-self: center;
        position: absolute;
        top: 40px;
    }
.login-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

    .login-box h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .login-box input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .login-box button {
        width: 100%;
        padding: 10px;
        background: #0057b8;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
    }

    .login-box .google-btn {
        background: white;
        color: black;
        border: 1px solid #ccc;
        margin-top: 10px;
    }

    .login-box a {
        display: block;
        margin-top: 10px;
        text-decoration: none;
        color: #0057b8;
    }
