/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #0A1C3A;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Georgia, serif;
}

.navbar-account {
    background: transparent;
    color: white;
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    font-family: Georgia, serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
}

.navbar-account:hover {
    opacity: 0.8;
}

/* MAIN LAYOUT */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    padding: 80px 60px;
    align-items: center;
}

/* LEFT PANEL */
.left-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* LOGO — large circle, bigger than the image inside */
.logo {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #ffffff;
    border: 5px solid #0A1C3A;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* SIGN IN BUTTON — outlined box style */
.signin-btn {
    background: #ffffff;
    color: #0A1C3A;
    padding: 14px 60px;
    border: 3px solid #0A1C3A;
    border-radius: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: Georgia, serif;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: background 0.2s, color 0.2s;
}

.signin-btn:hover {
    background: #0A1C3A;
    color: #ffffff;
}

/* RIGHT PANEL */
.right-panel {
    background: #b0bfd0;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    min-height: 400px;
}

.right-panel h2 {
    margin-bottom: 24px;
    font-size: 20px;
    font-family: Georgia, serif;
    font-weight: normal;
    color: #1a1a1a;
}

.right-panel p {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

/* MEDIA QUERIES */

/* Tablet & Small Laptops */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 40px;
    }

    .logo {
        width: 300px;
        height: 300px;
        padding: 24px;
    }

    .right-panel {
        padding: 30px;
    }

    .navbar {
        padding: 15px 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .navbar {
        justify-content: center;
        padding: 14px 20px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .navbar-account {
        font-size: 16px;
        margin-top: 8px;
    }

    .main-layout {
        padding: 40px 20px;
        gap: 30px;
    }

    .logo {
        width: 230px;
        height: 230px;
        padding: 20px;
    }

    .signin-btn {
        padding: 12px 40px;
        font-size: 16px;
    }

    .right-panel {
        padding: 20px;
        min-height: unset;
    }

    .right-panel h2 {
        font-size: 18px;
    }
}