html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: "TASA Explorer", sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0F0F17;
}

html {
    scrollbar-gutter: stable;
}

.login-page {
    min-height: 100vh;
    width: min(350px, 80%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.back-link {
    color: #696969;
    font-size: 13px;
    margin-bottom: 4px;
    align-self: flex-start;
}

.back-link:hover {
    color: #F5F5F5;
}

.login-card {
    background: #191C2F;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.login-card h1 {
    margin: 0 0 4px;
    font-size: 16px;
}

.login-card-sub {
    color: #696969;
    margin: 0 0 28px;
    font-size: 13px;
}

#login-form {
    width: 70%;
    margin: 0 auto;
    height: 30vh;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-card label {
    display: block;
    color: #696969;
    font-size: 13px;
    margin-bottom: 5px;
    align-self: flex-start;
    font-weight: bold;
}

.login-card input {
    width: 100%;
    height: 30px;
    font-family: inherit;
    box-sizing: border-box;
    background: #2A2A2A;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

.login-card input:focus {
    outline: none;
    border-color: #FF6B35;
}

.login-card .btn-accent {
    width: 100%;
    height: 30px;
    background: #FF6B35;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px auto;
}

.login-card .btn-accent:disabled {
    opacity: 0.6;
    cursor: default;
}

.field-error {
    color: #FF3B30;
    font-size: 13px;
    margin: 0px 0px 15px 0px;
    visibility: hidden;
    text-align: center;
}

.field-error.show {
    visibility: visible;
}

.login-errors {
    height: 100px;
    width: 100%;
}

.javascript {
    text-align: center;
    color: #FF3B30;
}
