/* 🔹 Sign-In Page Styling */
.signin-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(120deg, #7c087c, #ff7a00);
    color: white;
}

/* 🔹 Glassmorphism Effect */
.signin-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    width: 350px;  /* Ensure consistency */
    backdrop-filter: blur(10px);
    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 */
.signin-container h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.signin-container p {
    font-size: 14px;
    opacity: 0.9;
}

/* 🔹 Input Fields */
.signin-container input {
    width: 90%;  /* Matches button width */
    padding: 12px;
    margin: 10px 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 */
.signin-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* 🔹 Input Glow on Focus */
.signin-container input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 🔹 Sign In Button */
.signin-container button {
    width: 95%;  /* Now matches input width */
    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 */
.signin-container button:hover {
    background: #ff7a00;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
}

/* 🔹 Google Button Container */
.google-btn {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* 🔹 Sign-Up Link */
.signin-container a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.signin-container a:hover {
    text-decoration: underline;
}

/* 🔹 Cookie Consent Box */
.cookie-box {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 350px;
    font-size: 14px;
    display: none;  /* Hidden by default */
}

/* Cookie Text */
.cookie-box p {
    margin: 0;
    color: #333;
}

/* Cookie Button */
.cookie-box button {
    background: #ff7a00;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.cookie-box button:hover {
    background: #d56a00;
}


