* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: 380px;
    margin-bottom: 10px;
}

h2 {
    font-size: 16px;          /* smaller like the image */
    font-weight: 400;         /* normal / light */
    color: #333;
    margin: 8px 0 18px 0;     /* tighter spacing */
}


label {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: regular;
    margin-bottom: 5px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cfd6e0;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.password-box {
    position: relative;
}

.remember {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.remember input {
    margin-right: 8px;
}

.remember a {
    margin-left: 4px;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #020024, #02044a);
    color: white;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    opacity: 0.95;
}

.links {
    margin-top: 18px;   /* space from button */
    text-align: left;
}

.links a {
    display: block;
    font-size: 16px;
    color: #1d1d22;
    text-decoration: underline;
    margin-top: 7px;    /* small gap BETWEEN links */
    padding-left: 2px;
}
