body{
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.card{
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    width: 320px;
}

h1{
    margin: 0 0 16px 0;
    font-size: 20px;
    text-align: center;
}

label{
    display: block;
    font-size: 14px;
    margin-top: 8px;
}

input[type="email"],
input[type="password"]{
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.error{
    color: #b00020;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

button{
    width: 100%;
    padding: 10px;
    margin-top: 14px;
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

a.small{
    font-size: 13px;
    color: #0078d4;
    text-decoration: none;
}

.form-actions{
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

button.secondary{
    flex: 0 0 40%;
    background: #e0e0e0;
    color: #111;
}

button[type="submit"]{
    flex: 1 1 auto;
}