﻿/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

body {
    background: url('/images/double_expose.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center 10%; /* Adjust the second value to move the image down */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align items to the left */
    height: 100vh;
    margin: 0;
    font-family: 'Franklin Gothic', sans-serif;
}

.header {
    width: 100%;
    background-color: rgba(28, 28, 28, 0.8); /* Semi-transparent background */
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end; /* Align links to the right */
    align-items: center;
}

    .header ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        margin-right: 20px;
    }

        .header ul li {
            margin: 0 5px; /* Further reduced margin for closer spacing */
        }

            .header ul li a {
                color: white;
                text-decoration: none;
                font-size: 1rem; /* Smaller font size */
                font-family: 'Franklin Gothic', sans-serif;
                padding: 5px 5px;
                transition: opacity 0.3s;
            }

                .header ul li a:hover {
                    opacity: 0.6;
                }

.login-box {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the left */
    margin: 80px 20px 0 20px; /* Adjust margins to position it below the header */
    width: fit-content; /* Adjust the width to fit the content */
}

    .login-box form {
        display: flex;
        flex-direction: column; /* Stack form elements vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .login-box input {
        margin-bottom: 10px;
        padding: 10px;
        width: 200px; /* Set a width for the input fields */
        border: 1px solid #ccc;
        border-radius: 3px;
        background-color: rgba(255, 255, 255, 0.7);
    }

    .login-box button {
        padding: 10px 20px;
        border: none;
        background-color: #258cfb;
        color: white;
        border-radius: 3px;
        cursor: pointer;
    }

.content {
    margin-top: 80px; /* Adjust according to header height */
    text-align: center;
}

a {
    color: #258cfb;
    text-decoration: none;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

    a:hover {
        opacity: 0.6;
    }

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}
