body {
    background-color: #f8d7da;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}
.signup-container {
    max-width: 450px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.btn-custom {
    background-color: #6f42c1 !important;
    color: white !important;
    border: none;
}
.btn-custom:hover {
    background-color: #5a32a3;
}
.btn-group button {
    margin: 5px;
}
.terms {
    font-size: 0.9rem;
    color: #6c757d;
}
.terms a {
    color: #6f42c1;
    text-decoration: none;
}
.terms a:hover {
    text-decoration: underline;
}