* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #F5E3E5;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 20px rgba(92, 26, 50, 0.08);
}

.auth-logo {
    font-size: 22px;
    font-weight: bold;
    color: #5C1A32;
    margin-bottom: 8px;
}

.auth-title {
    font-size: 18px;
    font-weight: 600;
    color: #5C1A32;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 28px;
    line-height: 1.5;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E8C9CE;
    background: #FBF2F3;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s;
}

input[type="email"]:focus,
input[type="text"]:focus {
    border-color: #5C1A32;
}

input[type="text"].code-input {
    letter-spacing: 8px;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

button {
    width: 100%;
    padding: 13px;
    background: #5C1A32;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #712242;
}

.message {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.message.error {
    background: #FBE7E9;
    color: #A32D2D;
    border: 1px solid #F0C9CC;
}

.message.success {
    background: #E9F5EC;
    color: #2C6E3F;
    border: 1px solid #C6E6CF;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.auth-footer a {
    color: #5C1A32;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}
