body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #24E4BB, #1482A0);
    color: #093A48;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

/* Particles container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Centered Form */
.form-container {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: auto;
    top: 20%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Logo with hover effect */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    width: 80px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.2) rotate(5deg);
}

.form-container h3 {
    text-align: center;
    font-weight: bold;
    color: #1482A0;
}

.form-container .form-label {
    font-weight: bold;
    color: #093A48;
}

.form-container .btn-custom {
    background: #24E4BB;
    color: white;
    font-weight: bold;
    border: none;
}

.form-container .btn-custom:hover {
    background: #04A49E;
}

.text-small {
    font-size: 0.9rem;
    color: #8099A7;
}