/* General styles */
html, body {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the full height is used */
    overflow: hidden; /* Disable scrolling on the page */
    font-family: 'Montserrat', sans-serif;
    color: white;
}

/* Sign-in View Styles */
.sign-in-view {
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: url("assets/the_burg.jpg");
    overflow: hidden; /* Ensure no overflow inside the sign-in view */
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom: 8px solid #ffde52;
    z-index: 10;
}

.navbar .logo img {
    height: 80px;
    width: 210px;
}

/* Sign-in Container (flexbox) */
.sign-in-container {
    display: flex;
    flex-direction: column;  /* Stack the forms vertically */
    justify-content: center; /* Center the forms vertically */
    align-items: center;     /* Center the forms horizontally */
    height: auto; /* Allow the container height to adjust based on content */
    padding: 0 20px;
    gap: 30px; /* Space between email form and social sign-in form */
    box-sizing: border-box; /* Ensure padding does not affect layout size */
    margin-top: 50px; /* Move the forms up by 50px */
}

/* Left and Right Section Styles (Uniform size for both) */
.email-section, .social-sign-in {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px; /* Limit the width */
    border: 8px solid rgba(255, 222, 82, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* Title and Content within Boxes */
.page-header {
    text-align: center;
    margin-bottom: 20px;
}

.page-heading {
    font-size: 22px;
    font-weight: bold;
}

.email-form {
    display: flex;
    flex-direction: column;
}

.email-form .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    color: black;
}

.email-form .input-group input {
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 14px;
    padding: 5px;
}

.email-form .input-group img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.email-form button {
    background-color: white;
    border: none;
    padding: 10px;
    border-radius: 30%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
}

.email-form button:hover {
    background-color: #ffde52;
}

.email-form button img {
    width: 20px;
    height: 20px;
}

/* Social Sign-in Section */
.social-heading {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

/* Social Buttons Container */
.social-sign-in {
    display: flex; /* Display buttons side by side */
    justify-content: center; /* Center the buttons horizontally */
    align-items: center; /* Center buttons vertically if needed */
    gap: 20px; /* Uniform gap between the buttons */
    width: 100%;
    max-width: 400px; /* Keep the buttons inside the same width as the email section */
}

/* Square Social Buttons */
.social-btn {
    width: 80px; /* Set the width of the square button */
    height: 80px; /* Set the height of the square button */
    border-radius: 15px; /* Rounded edges */
    border: none; /* Remove the border */
    background-size: cover; /* Make sure the image covers the entire button */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent repeating the background */
    cursor: pointer; /* Change cursor to pointer */
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.google-btn {
    background-image: url('assets/Google.png'); /* Google icon */
}

.google-btn:hover {
    opacity: 0.8; /* Add hover effect */
}

.facebook-btn {
    background-size: 60%;
    background-image: url('assets/Facebook.png'); /* Facebook icon */
}

.facebook-btn:hover {
    opacity: 0.8; /* Add hover effect */
}

/* Disclaimer */
.disclaimer {
    position: absolute;
    text-align: center;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0);
    padding: 15px;
    width: 100%;
    font-size: 14px;
    color: white;
    z-index: 5;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.6);
        border-bottom: 4px solid #ffde52;
        z-index: 10;
    }

    .navbar .logo img {
        height: 70px;
        width: 180px; /* Smaller logo */
    }

    .sign-in-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .page-header {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .page-heading {
        font-size: 18px;
        font-weight: bold;
    }

    .email-section, .social-sign-in {
        background-color: rgba(0, 0, 0, 0.3);
        border: none; /* Remove border */
        box-shadow: none; /* Remove shadow */
        padding: 5px;
    }

    .email-form .input-group {
        background: transparent; /* Transparent input group */
        border-bottom: 2px solid #ffde52; /* Yellow underline */
        border-radius: 0;
        padding: 5px 0;
    }

    .email-form .input-group input {
        background: transparent;
        color: white;
        font-size: 16px;
    }

    .email-form .input-group input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .social-heading {
        font-size: 18px;
        font-weight: 700;
        color: white;
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* Social Buttons Container */
    .social-sign-in {
        display: flex; /* Display buttons side by side */
        justify-content: center; /* Center the buttons horizontally */
        align-items: center; /* Center buttons vertically if needed */
        gap: 20px; /* Uniform gap between the buttons */
        width: 100%;
        max-width: 400px; /* Keep the buttons inside the same width as the email section */
    }

    .social-sign-in {
        flex-direction: row;
        justify-content: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .disclaimer {
        position: absolute;
        text-align: center;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0);
        padding: 15px;
        width: 100%;
        font-size: 10px;
        color: white;
        z-index: 5;
    }
}

