body {
    background-color: #111827;
    color: #ffffff;
    font-family: "Arial", sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, #00b4d8, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-container {
    background-color: #1f2937;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.form-control {
    background-color: #111827;
    color: #ffffff;
    border: 1px solid #374151;
}

.form-control:focus {
    border-color: #00b4d8;
    box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25);
}

.btn-gradient {
    background: linear-gradient(to right, #00b4d8, #8338ec);
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.btn-gradient:hover {
    background: linear-gradient(to left, #00b4d8, #8338ec);
    transform: scale(1.05);
}

.text-muted {
    color: #cbd5e1 !important;
}

footer {
    background-color: #0b1120;
    padding: 1rem 0;
    text-align: center;
    color: #cbd5e1;
}