@font-face {
    font-family: 'Crayon';
    src: url('/static/WalterTurncoat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Crayon', cursive, sans-serif; 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo container */
#logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 100;
    transition: opacity 0.5s ease;
}

#logo {
    max-width: 300px;
    max-height: 300px;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

/* Landing page content */
.Landing_HjfcDe__a7ixQ {
    height: 100vh;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.Landing_HjfcDe__a7ixQ,
.Landing_HjfcDe__a7ixQ .Landing_contentNf7nc1__R7CjJ {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.Landing_HjfcDe__a7ixQ .Landing_contentNf7nc1__R7CjJ {
    margin: 25px;
    padding: 10px;
    width: 95%;
}

.Landing_HjfcDe__a7ixQ .Landing_contentNf7nc1__R7CjJ h2 {
    color: #fff;
    font-size: 55px;
    line-height: 66px;
    margin-bottom: 22px;
    text-align: center;
}

/* Inputs */
input[type="text"],
input[type="password"] {
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
    padding: 10px;
    width: 325px;
    font-size: 18px;
    font-family: 'Crayon', cursive, sans-serif;
}

/* Buttons */
button {
    background-color: #000;
    border: 1px solid #000;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: block;
    font-size: 18px;
    padding: 15px;
    width: 350px;
    font-family: 'Crayon', cursive, sans-serif;
}

button:hover {
    background-color: #ffd7e0;
    color: #000;
}

button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

/* Notification styling - positioned below the button */
.notification {
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
    text-align: center;
    max-width: 350px;
    word-wrap: break-word;
}

.notification.success {
    background-color: #4CAF50;
    opacity: 1;
}

.notification.error {
    background-color: #f44336;
    opacity: 1;
}