body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f6f6f6;
}

.container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #0d1c3b, #ffffff 70%);
}

.login-box {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

h1 {
    margin: 0;
    font-size: 22px;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    background: #e6ecf2;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.input-group .icon {
    font-size: 18px;
    margin-right: 8px;
    color: #333;
}

.input-group input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #1c2331;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #111827;
}

.remember {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #333;
}

.remember input {
    margin-right: 8px;
}
