body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #fff0f6;
    color: #4d2c3d;
}

h2 {
    color: #b03060;
}

p {
    color: #66384a;
}

.container {
    margin-top: 40px;
}

.auth-title {
    color: #b03060;
}

.auth-box {
    border: 2px solid #f5b6c5;
    background: #ffffff;
    width: 450px;
    margin: 30px auto;
    padding: 35px;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.auth-box label {
    display: inline-block;
    font-weight: bold;
}

.auth-box input[type="text"],
.auth-box input[type="email"],
.auth-box input[type="password"] {
    width: 200px;
    padding: 6px;
    border: 1px solid #f5b6c5;
    border-radius: 8px;
    display: block;
}

.auth-box input[type="text"]:focus,
.auth-box input[type="email"]:focus,
.auth-box input[type="password"]:focus {
    outline: none;
    border-color: #ff6fa3;
    box-shadow: 0 0 5px #ff6fa3;
}

.auth-box .options {
    margin-top: 10px;
    font-size: 14px;
}

.links {
    margin-top: 18px;
    text-align: center;
}

.links a {
    margin: 0 12px;
    text-decoration: none;
    /* color: #b03060; */
    font-weight: bold;
    transition: color 0.3s;
}

.links a:hover {
    color: #ff6fa3;
}

.btn {
    background: #b03060;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff6fa3;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #66384a;
}

.error {
    color: red;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
    padding: 10px;
    background: #ffebee;
    border: 1px solid #f5b6c5;
    border-radius: 8px;
}