* {
    box-sizing: border-box;
}

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

/* Top bar */
.topbar {
    height: 50px;
    background: #0082c9;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: white;
    font-size: 18px;
}

/* Layout */
.wrapper {
    height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.login-card {
    width: 340px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 25px rgba(0,0,0,0.15);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-weight: 500;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus {
    border-color: #0082c9;
    outline: none;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background: #0082c9;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #006aa3;
}

/* Links */
.links {
    margin-top: 15px;
}

.links a {
    color: #0082c9;
    text-decoration: none;
    font-size: 13px;
}wq
