﻿
.contact-area {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glass Card */
.form_area {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 55px 45px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Heading */
.breadcrumb-title {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* Labels */
.form-group label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* Inputs */
.form-control {
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    border: none;
    outline: none;
    font-size: 18px; /* BIGGER FONT */
    background: rgba(255,255,255,0.08);
    color: #ffffff !important; /* FORCE WHITE TEXT */
    margin-bottom: 20px;
    transition: 0.3s;
}

    /* Input focus glow */
    .form-control:focus {
        background: rgba(255,255,255,0.12);
        box-shadow: 0 0 18px rgba(111, 66, 255, 0.8);
        color: #ffffff;
    }

    /* Placeholder */
    .form-control::placeholder {
        color: #dddddd;
        font-size: 16px;
    }

/* Button */
.btn-solid {
    background: linear-gradient(45deg, #ffd400, #ffb300);
    border: none;
    padding: 16px 60px;
    font-size: 20px; /* BIGGER BUTTON TEXT */
    font-weight: 700;
    border-radius: 40px;
    color: #000;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
}

    /* Button hover */
    .btn-solid:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 35px rgba(255, 212, 0, 0.9);
    }

/* Links */
.submit__btn h5 {
    color: #ffffff;
    font-size: 16px;
    margin-top: 12px;
}

.submit__btn a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

    /* Hover glow */
    .submit__btn a:hover {
        text-shadow: 0 0 10px #ffd400;
    }

/* Signup highlight */
.submit__btn h5:last-child a {
    color: #00ffcc;
}

/* Floating Animation */
.form_area {
    animation: floatBox 4s ease-in-out infinite;
}
/* Fix wrapper */
.one-field-form {
    position: relative;
    margin-bottom: 25px;
}

/* Field group full width */
.field-group {
    position: relative;
}

    /* Input (already styled, just adjust padding for icon) */
    .field-group .form-control {
        width: 100%;
        padding: 18px 70px 18px 20px; /* space for icon */
        border-radius: 14px;
        font-size: 18px;
        color: #ffffff !important;
    }

/* Button container (icon box) */
.cta-area {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* Eye button */
.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffd400, #ffb300);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.6);
    transition: 0.3s;
}

    /* Hover effect */
    .subscribe-btn:hover {
        box-shadow: 0 0 25px rgba(255, 212, 0, 0.9);
        transform: scale(1.05);
    }

    /* Icon */
    .subscribe-btn i {
        color: #000;
        font-size: 18px;
    }

/* Label spacing fix */
.email-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
/* Dropdown styling */
.form-select {
    width: 100%;
    padding: 18px 55px 18px 20px; /* space for arrow */
    border-radius: 14px;
    border: none;
    outline: none;
    font-size: 18px;
    background-color: rgba(255,255,255,0.08);
    color: #ffffff !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    /* Custom arrow using SVG */
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 30px;
}

    /* Focus glow */
    .form-select:focus {
        background-color: rgba(255,255,255,0.12);
        box-shadow: 0 0 18px rgba(111, 66, 255, 0.8);
    }

    /* Dropdown list */
    .form-select option {
        background: #1a1a2e;
        color: #ffffff;
    }


/* Label */


@keyframes floatBox {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}
