@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-blue: #005eb8;
    --george-green: #14b82c;
    --text-dark: #333;
    --text-muted: #666;
    --border-gray: #ccc;
    --footer-bg: #4477ee; /* Adjusted blue for footer */
}

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

body {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.main-content {
    display: flex;
    flex: 1;
}

/* Left Panel */
.left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.login-box {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.logo-g-small {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
}

.logo-g-small svg {
    fill: #005eb8;
}

h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    background: #fcfcfc;
}

.form-group .icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

button {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 1rem;
}

button:hover {
    background: #004a91;
}

.box-links {
    font-size: 0.75rem;
    color: var(--primary-blue);
    text-decoration: none;
    display: block;
    margin-top: 0.5rem;
}

/* Right Panel */
.right-panel {
    flex: 1;
    background: var(--george-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem;
}

.logo-g-large {
    width: 200px;
    height: 200px;
}

.logo-g-large svg {
    fill: #fff;
}

.right-footer-text {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    color: #fff;
}

.right-footer-text div {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer Bar */
.footer-bar {
    height: 40px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #fff;
    font-size: 0.75rem;
    justify-content: space-between;
}

.footer-logo {
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.lang-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .right-panel {
        display: none;
    }
}

