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

body {
    height: 100vh;
    background: linear-gradient(135deg, #0b1f4d, #0f5bd3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.logo img {
    width: 120px;
    margin-bottom: 20px;
}

/* If you don't have a logo yet */
.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 8px;
    color: #222;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 18px;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

input:focus {
    border-color: #0f5bd3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 91, 211, 0.2);
}

button {
    width: 100%;
    padding: 12px;
    background: #0f5bd3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #0b46a3;
}

.links {
    margin-top: 15px;
}

.links a {
    font-size: 13px;
    text-decoration: none;
    color: #0f5bd3;
}

.links a:hover {
    text-decoration: underline;
}
