body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a2f5a;
    height: 100vh;
    overflow: hidden;
}

/* White curved background */
.bg-white {
    position: absolute;
    width: 75%;
    height: 140%;
    background: #fff;
    border-radius: 50%;
    top: -20%;
    left: -15%;
}

/* Login Card */
.login-card {
    position: relative;
    width: 360px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}

.brand {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: cursive;
}

h2 {
    margin-bottom: 25px;
    color: #333;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 13px;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.input-group input:focus {
    border-color: #0a2f5a;
}

button {
    width: 100%;
    padding: 12px;
    background: #0a2f5a;
    border: none;
    color: #fff;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #08315f;
}

/* VC Logo (if you enable later)
.vc-logo {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
    font-family: cursive;
}
*/

@media (max-width: 900px) {
    .vc-logo {
        display: none;
    }

    .bg-white {
        width: 120%;
    }
}
