body {
    background: #fff;
    font-family: 'Inter', Arial, sans-serif;
}
.container {
    max-width: 400px;
    margin: 60px auto;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px 28px;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.05);
}
h1, h4 {
    font-weight: 700;
    margin-bottom: 24px;
}
.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}
input[type="text"], input[type="password"], select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 4px;
}
input:focus, select:focus {
    outline: none;
    border-color: #888;
}
.btn-primary, button[disabled] {
    border-radius: 8px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
}
.btn-primary {
    background: #222;
    border: none;
}
.btn-primary:disabled {
    background: #f2f2f2;
    color: #aaa;
}
.link, a {
    color: #222;
}
.link:hover, a:hover {
    text-decoration: underline;
}
.form-footer {
    text-align: center;
    margin-top: 24px;
}
.password-toggle {
    position: absolute;
    right: 16px;
    top: 38px;
    cursor: pointer;
    color: #bbb;
}
.position-relative {
    position: relative;
}
