/* FULL PAGE CENTER */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #888889;
    font-family: 'Inter', sans-serif;
}

/* CONTAINER */
.login-wrapper {
    width: 380px;
}

/* LOGO */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 60px;
    margin-bottom: 10px;
}

.logo h1 {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

/* CARD */
.login-card {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* TITLE */
.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* INPUT */
.input-group {
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.input-group input:focus {
    border-color: #3b82f6;
    outline: none;
}

/* BUTTON */
button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #3b82f6;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    background: #2563eb;
}

/* LINK */
.link {
    text-align: center;
    margin-top: 15px;
}

.link a {
    color: #3b82f6;
    text-decoration: none;
}

/* LOGIN PAGE SPECIFIC */

.logo h1 {
    color: #e2e8f0;
}

.auth-card {
    border-top: 4px solid #3b82f6;
}