body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f4f8fb;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.main-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #f4f8fb;
    padding-top: 48px;
}

.main-container > .login,
.main-container > .hero-body {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
    padding: 2.5rem 2rem;
    margin-bottom: 48px;
    border: 1px solid #e3f0fc;
}

.form-inline {
    display: flex;
    gap: 1rem;
    align-items: center;
}

label {
    font-weight: 500;
    color: #1976d2;
    margin-bottom: 0.3em;
    display: block;
}

input, select, textarea {
    width: 100%;
    border: 1.5px solid #b3d1f7;
    border-radius: 6px;
    padding: 0.7em 1em;
    margin-bottom: 1.2em;
    font-size: 1em;
    background: #f8fafd;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1976d2;
    background: #e3f0fc;
    box-shadow: 0 2px 8px rgba(25,118,210,0.08);
}

.button, button {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7em 1.5em;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(25,118,210,0.06);
}

.button:hover, button:hover {
    background: #1565c0;
    box-shadow: 0 4px 16px rgba(25,118,210,0.13);
}

@media (max-width: 600px) {
    .main-container > .login,
    .main-container > .hero-body {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
}