body {
    height: 100%;
    margin: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

/* Centering Main Content */
.container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo-small img {
    width: 100px;
    border-radius: 50%;
}

.logo-small h5 {
    margin-top: 20px;
}

.text-muted {
    color: white !important;
}


/* Form Container */
.col-10 {
    max-width: 100%;
}

/* Form Styles */
form {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
}

/* Form Inputs */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 12px 15px;
    font-size: 1rem;
}

/* Form Input Focus */
.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Form Inputs with Icons */
.input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

/* Improve input styling */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}


/* Button Styles */
.btn-default {
    background: #ebebeb;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
}

.btn-default:hover {
    background: #6a11cb;
}

/* Tooltip Icon */
.tooltip-btn {
    background: none;
    border: none;
    color: red;
    font-size: 1.2rem;
    margin-left: 5px;
}

/* Responsive Fix */
@media (max-width: 576px) {
    .col-10 {
        max-width: 90%;
    }

    form {
        padding: 20px;
    }

    .logo-small img {
        width: 70px;
    }
}