body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Welcome text */
.welcome-text {
    text-align: center;
    margin-bottom: 20px;
}

/* Login card */
.login-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 250px;
}

.login-card input {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.login-card button {
    width: 50%;
    padding: 10px;
    background: pink;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block;
    margin: 0 auto;
}

.login-card button:hover {
    transform: scale(1.1);
}

.password-label {
    display: block;
    text-align: center;
    font-weight: bold;
}

.error-message {
    text-align: center;
    color: red;
    font-size: 14px;
    margin: 5px 0 10px;
    display: none;
}