* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #020024, #070f5a, #020024); */
    /* padding: 30px 0; */
}

.pagecontainer {
    background: linear-gradient(135deg, #020024, #0b0f8a, #020024);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.logobox {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 60px;
}

.signup-container {
    width: 100%;
    max-width: 420px;
    /* max-height: 90vh; */
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    position: relative;
    
    /* overflow-y: auto; */
}

/* Scrollbar Track */
.signup-container::-webkit-scrollbar {
    width: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Scrollbar Thumb */
.signup-container::-webkit-scrollbar-thumb {
    background: rgba(157, 220, 255, 0.6);
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Thumb hover effect */
.signup-container::-webkit-scrollbar-thumb:hover {
    background: rgba(157, 220, 255, 0.9);
}

/* Firefox scrollbar */
.signup-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(157, 220, 255, 0.6) rgba(255, 255, 255, 0.1);
}

.signup-container h2 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.signup-container p {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #9ddcff;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
}

.input-group input[type="date"]:not(:focus):not(:valid)::before {
  content: attr(data-placeholder);
  color: #999;
}


.input-group select {
    width: 100%;
    padding: 12px 15px 12px 42px;
    margin: -1px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.15); /* glassy background like input */
    color: #fff;
    font-size: 14px;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    position: relative;
    padding-right: 35px; /* space for custom arrow */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.input-group select:hover,
.input-group select:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 5px rgba(11, 15, 138, 0.755);
}

/* Custom arrow using pseudo-element */
.input-group select::after {
    content: "\25BC"; /* down arrow */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ddcff;
    font-size: 12px;
}

/* Option styling (limited support) */
.input-group select option {
    background: rgba(15, 32, 39, 0.95); /* dark background like body gradient */
    color: #fff;
    padding: 10px;
}

/* Optional: modern hover effect inside dropdown (works in Chrome/Safari) */
.input-group select option:hover {
    background: rgba(26, 115, 180, 0.8);
}


.input-group input::placeholder {
    color: #dfefff;
    opacity: 0.8;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 5px rgba(11, 15, 138, 0.755);
}

.signup-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2ea3, #2b6fff, #2a2ea3);
    color: #eaf1ff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.footer-text {
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
    opacity: 0.85;
}

.footer-text a {
    color: #9ddcff;
    text-decoration: none;
    font-weight: 500;
}

.footer-text a:hover {
    text-decoration: underline;
}

.signup-btn:disabled {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
    color: #2c3e50;
}


.translatorbox {
    position: fixed;
    bottom: 20px; /* Adjust as needed for spacing */
    left: 20px;   /* Adjust as needed for spacing */
    z-index: 1000; /* Ensure it stays on top of other content */
}

#translate-icon {
    color: rgb(234, 234, 234);
    transition: all 0.3s ease;
    font-size: 1.5em;
    }

    #translate-icon:hover {
    cursor: pointer;
    text-shadow: 0 0 8px rgb(255, 255, 255), 0 0 16px rgb(241, 241, 241);
    }


#google_translate_element {
    display: flex;
    align-items: center;
    width: auto; /* Ensure it only takes necessary space */
}

.goog-te-gadget {
    width: 100%;
}

.goog-te-gadget-simple {
    background: white !important;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
}
img.goog-te-gadget-icon, .goog-te-menu-value span {
    display: none !important;
}

/* Style Google Translate Dropdown */
.goog-te-combo {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Glowing Outline Effect with Google Colors */
.goog-te-combo:focus {
    border-color: #4285F4; /* Google Blue */
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.7), 
                0 0 15px rgba(234, 67, 53, 0.7), 
                0 0 20px rgba(251, 188, 5, 0.7), 
                0 0 25px rgba(52, 168, 83, 0.7); /* Google Colors */
}

.googleTranslateLabel {
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.8em !important;
}