@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f2f5f7;
    color: #212529;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.card {
    background: white;
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(0,0,0,0.08);
    text-align: left;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    background-color: #009578;
    color: white;
    border: none;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
}