/* =======================
   REGISTER PAGE STYLES
   ======================= */

body {
    margin: 0;
    min-height: 100vh;
    background: #f4f1ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    max-width: 450px;
    margin: 3rem auto;
}

.register-card {
    background: #b4afa7;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgb(255, 255, 255);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    background:#ffffff;
    font-size: 36px;
}
    
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.btn-primary {
    background-color: #667eea;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #556cd6;
}

.register-footer p {
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.register-footer a {
    color: #667eea;
    font-weight: bold;
    text-decoration: none;
}

.register-footer a:hover {
    text-decoration: underline;
}
