@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('../img/illustrations/liquid.png') no-repeat center center fixed;
        height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Transparent box with rounded corners */
.box-area {
    width: 930px;
    background-color: rgba(255, 255, 255, 0.1); /* More transparent */
    border-radius: 30px; /* Increased rounding */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.2); /* Lighter border */
    overflow: hidden;
    transition: all 0.4s ease;
}

.box-area:hover {
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.3);
    transform: translateY(-5px);
}

/* Left box - semi-transparent */
.left-box {
    background-color: rgba(83, 93, 125, 0.5); /* More transparent */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

/* Right box - content area */
.right-box {
    padding: 40px;
    background-color: rgba(5, 5, 5, 0.15); /* Slightly more opaque */
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Form elements */
.form-control {
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 12px; /* More rounded */
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: white;
    box-shadow: 0 0 0 3px rgba(62, 71, 104, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    border-radius: 12px; /* More rounded */
    padding: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: rgba(62, 71, 104, 0.9);
    box-shadow: 0 4px 15px rgba(62, 71, 104, 0.3);
}

.btn-primary:hover {
    background-color: rgba(44, 53, 88, 0.9);
    transform: translateY(-2px);
}

/* Images and text */
.featured-image img {
    width: 250px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.header-text h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-text p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .box-area {
        margin: 20px;
        border-radius: 20px;
    }
    
    .left-box, .right-box {
        border-radius: 0;
    }
    
    .left-box {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .right-box {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.box-area {
    animation: fadeIn 0.6s ease-out forwards;
}

.input-group {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.header-text {
    animation: fadeIn 0.6s ease-out 0.1s both;
}

