﻿@font-face {
    font-family: 'Bouncy';
    src: url('/fonts/Bouncy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bouncy';
    src: url('/fonts/BouncyFill.otf') format('opentype');
    font-weight: bold; /* For example, you can use bold for this version */
    font-style: normal;
}

@font-face {
    font-family: 'Bouncy';
    src: url('/fonts/BouncyThin.otf') format('opentype');
    font-weight: 300; /* Use a light weight for Thin variant */
    font-style: normal;
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.login-container {
    min-height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/images/login-background.png') no-repeat center center;
    background-size: cover; /* Ensures full image is shown */
    background-position: center center;
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
}

.bouncy-title {
    font-family: 'Bouncy', sans-serif; /* Use the custom Bouncy font */
    font-weight: normal; /* Regular Bouncy font */
    font-size: 64px; /* Increase the font size */
    color: #ff00dc;
    text-align: center; /* Ensure text is centered inside the element */
}

    .bouncy-title.bold {
        font-weight: bold; /* Apply the BouncyFill.otf */
    }

    .bouncy-title.thin {
        font-weight: 300; /* Apply the BouncyThin.otf */
    }
