body {
    background: #e6f0fa;
    font-family: 'Roboto', sans-serif;
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.login-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: #f0f7ff;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me-box {
    width: 18px;
    height: 18px;
    accent-color: #38bdf8;
    cursor: pointer;
}

.remember-me-label {
    font-size: 14px;
    color: #475569;
    font-weight: 400;
    cursor: pointer;
}

.login-btn {
    align-self: flex-end;
    padding: 14px 40px;
    background: linear-gradient(135deg, #38bdf8, #2ea4e8);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(56, 189, 248, 0.5);
    cursor: pointer;
    margin-right: 20px; /* Offset from right edge */
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.7);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-form { max-width: 360px; }
    .login-btn { margin-right: 15px; }
}

@media (max-width: 480px) {
    .login-form { max-width: 100%; padding: 0 15px; }
    .form-label { font-size: 12px; }
    .form-input { padding: 12px 14px; font-size: 14px; }
    .login-btn { padding: 12px 35px; font-size: 14px; margin-right: 10px; }
}