@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@font-face {
    font-family: "Jumbo";
    src: url("../assets/JumboTheSans.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

* {
    user-select: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    background: linear-gradient(45deg, rgba(17, 20, 32, 1) 0%, rgba(36, 49, 77, 1) 100%);
    font-family: 'Ubuntu', sans-serif;
    color: white;
}

.LoginContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.LoginBox {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.Logo {
    height: 50px;
    margin-bottom: 20px;
    max-width: 100%;
}

.LoginBox input {
    display: block;
    margin: 10px 0;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
}

.LoginBox input:focus {
    outline: none;
}

/* Disabled inputs */
.LoginBox input[disabled] {
    background-color: #2c2c3a;
    color: #888;
    cursor: not-allowed;
}

.login-response {
    margin-top: 15px;
    color: #ff4d4d;
    font-size: 14px;
}

.LoginBox button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background-color: #21212a;
    transition: background-color 0.2s ease;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.LoginBox button:hover {
    background-color: #0a0a0e;
}

@media (max-width: 480px) {
    .LoginBox {
        padding: 25px 20px;
    }

    .LoginBox input,
    .LoginBox button {
        font-size: 14px;
        padding: 10px;
    }
}
