/* css/register.css */
body {
    background: linear-gradient(135deg, #01d6af, #0a33ec);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    margin-bottom: 50px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #5a6fd8;
    border-color: #5a6fd8;
    transform: translateY(-2px);
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.alert {
    border-radius: 8px;
}

.form-text {
    font-size: 0.8rem;
    color: #6c757d;
}

a {
    color: #667eea;
}

a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}