body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
    background: #F4F5F7;
}

.container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: #fff;
    padding: 40px;
    width: 360px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    text-align: center;
}

.logo {
    height: 48px;
    margin-bottom: 20px;
}

h1 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #172B4D;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #DFE1E6;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background: #0052CC;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background: #0065FF;
}

.links {
    margin-top: 15px;
}

.links a {
    color: #0052CC;
    font-size: 14px;
    text-decoration: none;
}
