/* 🔹 General Page Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(120deg, #7c087c, #ff7a00);
}

/* 🔹 Glassmorphism Container */
.signup-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 350px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s ease-in-out;
}

/* 🔹 Title & Subtitle */
.signup-container h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: white;
}

.signup-container p {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

/* 🔹 Input Fields */
.signup-container input {
    width: calc(100% - 24px);  /* Adjust width to match button */
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    transition: 0.3s ease-in-out;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* 🔹 Input Placeholder Color */
.signup-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* 🔹 Input Glow on Focus */
.signup-container input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 🔹 Sign Up Button (Same Width as Input) */
.signup-container button {
    width: 100%;
    background: white;
    color: #ff7a00;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* 🔹 Button Hover Effect */
.signup-container button:hover {
    background: #ff7a00;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
}

/* 🔹 Sign-In Link */
.signup-container a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.signup-container a:hover {
    text-decoration: underline;
}

.google-btn {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hidden{
    display: none !important;
}

