/**
 * SeAT login page layout
 */
@media all {
    html, body {
        height: auto;
        font-family: 'Arial', sans-serif; /* Clean, modern font */
    }

    /* Background styling */
    .login-page, .register.body {
        color: rgb(255, 255, 255);
        background-image: url("background.jpg"); /* Ensure you have a high-quality background */
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Login Box Styling */
    .login-box, .register-box {
        width: 360px;
        margin: 0;
        position: relative;
        background: rgba(0, 0, 0, 0.7); /* Darker background with some opacity */
        border-radius: 20px; /* Slightly rounded corners for a more modern look */
        padding: 20px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Enhanced shadow for depth */
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
    }

    /* Logo styling */
    .login-box > div > img, .register-logo {
        font-size: 35px;
        text-align: center;
        margin-bottom: 20px; /* Slightly reduced margin */
        font-weight: 300;
        margin-top: 20px; /* Reduced the top margin */
    }
  
    .login-box > div > img, .register-logo::before {
        display: block;
        width: 128px;
        height: 128px;
        margin: 0 auto;
        content: url("logo.png"); /* Ensure the logo path is correct */
        border-radius: 0%;
        margin-bottom: 0px; /* Reduced bottom margin */
        margin-top: 50px; /* No need for a large top margin */
    }
   /* Sign text */
   .login-box > div:first-of-type::after {
        content: "Banana-Republic"; /* Keep your branding text */
        display: block;
        text-align: center;
        font-size: 24px;
        color: white; /* Lighter text for contrast */
        font-weight: bold; /* Make it bold */
        text-transform: uppercase; /* Capitalize the text for a more striking look */
        letter-spacing: 2px; /* Add some space between letters */
        margin-top: 10px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
   }

    /* Box body styling */
    .login-box-body, .register-box-body {
        background: transparent;
        padding: 30px;
        border-top: 0;
        color: inherit;
        text-align: center;
    }

    /* Navbar brand - hiding if not needed */
    .login-box .navbar-brand {
        display: none;
    }

    /* Button enhancements (if any buttons exist in the future) */
    .login-box button {
        background-color: #00A1E4; /* Bright accent color for buttons */
        color: white;
        font-size: 16px;
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        width: 100%;
        margin-top: 20px;
        transition: background-color 0.3s ease;
    }

    .login-box button:hover {
        background-color: #007B8A; /* Darker shade on hover */
    }

}
