:root{
    --primary-color: #013E52;
    --secondary-color: #F88D2B;
    --tertiary-color: #4169e1;
    --background-color: #D1D1D1;
    --loading-color: #fff;
}
body{
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background: #003E53;
    background-image: url("/Images/wallpaper.webp");
    background-size: cover;
    background-position: center;
}
.login__background{
    position: absolute;
    height: 600px;
    width: 600px;
    padding: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/Images/container.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.login__container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--primary-color);
    /* width: 100%;
    max-width: 500px; */
}
.opex_logo{
    width: 300px;
    margin-bottom: 1rem;
}
.login__heading{
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-variant: small-caps;
}
.login__input{
    width: 100%;
    max-width: 400px;
    padding: 0.25rem 0.5rem;
    /* margin: 0.5rem; */
    /* border: 1px solid var(--primary-color); */
    /* border-radius: 5px; */
    font-size: 1.2rem;
    background-color: transparent;
    text-align: left;
    color: white;
    border: 0;
    border-bottom: 1px solid white;
    box-sizing: border-box;
}
.login__button{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor:pointer;
    /* background: white; */
    /* border: 1px solid var(--primary-color); */
    /* color: var(--primary-color); */
    background: transparent;
    color: var(--secondary-color);
    font-variant: small-caps;
    border: 0;
    font-size: 1.5rem;

    display:flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 0.5rem;
}
.login__button::after{
    content:'';
    display:inline-block;
    height: 1.7rem;
    width: 2rem;
    background-image: url('/Images/icons/play_button.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.login__button:hover{
    /* background: var(--primary-color); */
    /* border: 1px solid var(--secondary-color); */
    color: royalblue;
}
.login__button:hover::after{
    background-image: url('/Images/icons/play_hover.svg');
}
.login__error{
    border: 2px solid red;
    background: lightsalmon;
}
.login__success{
    border: 2px solid green;
    background: yellowgreen;
}
.login__link{
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    background: transparent;
    text-decoration: none;
}
.login__link:hover{
    color: royalblue;
}
.login__info{
    padding: 1rem;
    color: white;
}
.reset__modal{
    border-radius: 5px;
    margin: 1rem;
    padding: 1rem;
}
.login__form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    
}
.login__group{
    width: 100%;
    position:relative;
}
.login__padded{
    padding: 1rem;
}
.login__text{
    color: white;
}
.login__highlight{
    color: var(--secondary-color);
}