/* Layout Alignment */
body {
    margin: 0;
    padding: 0;
    display: flex; /* Allows Sidebar and Content-wrapper to sit side-by-side */
    min-height: 100vh;
    background-color: #DFFDFD;
    font-family: 'Inter', sans-serif;
}

.content-wrapper {
    flex-grow: 1; /* Takes up the rest of the screen next to sidebar */
    display: flex;
    flex-direction: column;
}

.main-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-grow: 1; /* Centers login card vertically in the remaining space */
    padding: 20px;
    box-sizing: border-box;
}

/* Branding Section */
.branding {
    text-align: center;
    user-select: none;
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 6rem; /* Slightly reduced for better fit with sidebar */
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1.2;
    font-weight: 400;
}

.ocean { color: #000000; }
.sight { color: #1a1a9e; margin-left: -5px; }

.admin-center {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0px;
    margin-top: 5px;
    color: #000;
    text-transform: uppercase;
}

/* Login Card Styling */
.login-card {
    background: white;
    width: 100%;
    max-width: 380px;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
    box-sizing: border-box;
}

.login-card h2 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 0.95rem;
    outline: none;
}

.btn-login {
    width: 100%;
    background-color: #1a1a9e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #0d0d6e;
}

.signup-text {
    font-size: 0.85rem;
    margin-top: 25px;
    text-align: center;
    color: #444;
}

.signup-text a {
    color: #1a1a9e;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Tweak */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .logo-text {
        font-size: 4rem;
    }
}