/* Base styles */
body {
    background-color: #f8f9fa;
}

/* Container styles */
.container {
    max-width: 400px;
    margin-top: 50px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Text styles */
.text-center {
    margin-bottom: 20px;
}

/* Register link styles */
.register-link {
    margin-top: 15px;
    text-align: center;
}

/* Alert styles */
.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}