body {
    background-color: rgb(238, 238, 238);
    font-family: system-ui;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
    margin: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#helpdesk-text {
    user-select: none;
    font-size: 36pt;
    font-weight: 300;
    color: rgb(255, 157, 42);
    text-align: center;
    margin-top: min(50px, 7%);
}

#login-form-container {
    text-align: center;
    width: min(90%, 500px);
    margin: auto;
    margin-top: min(35px, 5%);
}

#login-form-head {
    color: black;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 22pt;
}

#login-form-main {
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 28px;
    border-radius: 15px;
    position: relative;
}

#login-form-main label {
    width: auto;
    height: auto;
    background-color: white;
    opacity: 1;
    padding: 0;
    text-align: left;
    z-index: 999;
}

#login-form-container input[type='text'],
#login-form-container input[type='password']{
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    border: 1px solid #ced4da;
    font-size: 12pt;
    height: 58px;
}

.login__checkbox {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
    cursor: pointer;
}
.login__checkbox input[type='checkbox'] {
    width: 10px;
}

.login__checkbox label {
    font-size: 13px;
}

.login__checkbox label:hover {
    color: black;
    border-color: #EE5D00;
}

.form-row {
    position: relative;
}

#login-form-container #login-button {
    text-align: center;
    color: white;
    background-color: rgb(238, 93, 0);
    width: 100%;
    height: 36px;
    border: none;
    margin-bottom: 18px;
    font-size: 10pt;
}

#login-form-container #login-button:disabled {
    text-align: center;
    color: white;
    background-color: gray;
    width: 100%;
    height: 36px;
    border: none;
    margin-bottom: 18px;
    font-size: 10pt;
}

#login-form-container #login-button:disabled:hover {
    cursor: default;
}

.IT_CODE_logo {
    margin-top: 20%;
    height: 100%;
    align-content: center;
}

.IT_CODE_logo img {
    width: 35%;
    height: 35%;
}