.popup-background {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
    background: -webkit-linear-gradient(to right,  hsla(240, 60%, 40%, .6), hsla(0, 0%, 0, .6)); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,  hsla(240, 60%, 40%, .6), hsla(0, 0%, 0, .6)); /* W3C, */
    background: hsla(0, 0%, 0%, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.popup{
    max-height: fit-content;
    min-height: 300px;
    width: 400px;
    display: flex;
    flex-direction: column;
    color: black;
    background: white;
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
}
.popup__message{
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    box-sizing: border-box;
    flex-grow: 1;
    margin-bottom: 20px;
    user-select: text;
    word-break: break-word;
}
.popup__message--adapter-info {
    display: inline-block;
    margin: auto;
    color: hsl(24, 100%, 50%);
    font-weight: bold;
    box-sizing: border-box;
    user-select: text;
    word-break: break-word;
}
.popup__message--adapter-info > a {
    color: blue;
    cursor: pointer;
}
.popup__message--adapter-info > a:hover, .popup__message--adapter-info > a:active{
    color: purple;
    cursor: pointer;
}
.popup__accept--container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    height: 50px;
}
.popup__accept-decline{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    height: 35px;
}
.popup__accept{
        transition: .1s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 25px;
        width: 45%;
        background: #3399ff;
        color: white;
        border-radius: 3px;
        border-width: 3px;
        /* box-sizing: border-box; */
        border-color: #3399ff;
        border-style: solid;

}
.popup__accept--container > .popup__accept{
    height: 60px;
    width: 100%;
    box-sizing: border-box;
} 
.popup__decline{
        transition: .1s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 26px;
        width: 45%;
        background: red;
        color: white;
        border-radius: 3px;
        border-color: red;
        margin: 0px 0px 1px 5px;
        border-style: solid;
        border-width: 3px;
}
.popup__decline:hover{
    background: white;
    color: red;
    font-weight: bold;
    cursor: pointer;
}
.popup__accept:hover{
    background: white;
    color: hsl(140, 100%, 45%);
    font-weight: bold;
    cursor: pointer;
}
.popup__input{
    width: calc(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.popup__input > input{
    height: 30px;
    width: 100%;
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: hsl(24, 100%, 50%);
    font-size: 14px;
}
.popup__input2{
    width: calc(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 20px;
}
.popup__input2 > input{
    height: 30px;
    width: 100%;
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: hsl(24, 100%, 50%);
    font-size: 14px;
}
.popup__input > input:active{
    height: 30px;
    width: 100%;

}
.login{
    position: relative;
    border-width: 1px;
    border-color: hsla(0, 0%, 85%, 1);
    border-style: solid;
    height: 600px;
    width: 500px;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    border-radius: 3px;
}
.login__header{
    height: 100px;
    border-width: 0 0 1px 0;
    border-color: hsla(0, 0%, 85%, 1);
    border-style: solid;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.login__username::after{
    content: "Username";
    position: absolute;
    top: -40px;
    left: 0px;
}
.login__username{
    position: relative;
    border-radius: 3px;
    height: 60px;
    width: 100%;
    margin-top: 50px;
    background: hsla(0, 0%, 99%, 1);
    border-width: 1px;
    border-color: hsla(0, 0%, 85%, 1);
    border-style: solid;
}
.login__fields input{
    font-size: 16px;
    background: none;
    border-width: 0px;
    padding: 0 15px;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}
.login__password::after{
    content: "Password";
    position: absolute;
    top: -40px;
    left: 0px;
}
.login__password{
    position: relative;
    border-radius: 3px;
    height: 60px;
    width: 100%;
    margin-top: 50px;
    background: hsla(0, 0%, 99%, 1);
    border-width: 1px;
    border-color: hsla(0, 0%, 85%, 1);
    border-style: solid;
}
.ibutton__password::after{
    content: "Please enter 8 bytes in hexadecimal separated by dashes Example: 11-22-33-44-55-66-77-88";
    position: absolute;
    top: -60px;
    left: 0px;
}
.ibutton__password{
    position: relative;
    border-radius: 3px;
    height: 60px;
    width: 100%;
    margin-top: 70px;
    background: hsla(0, 0%, 99%, 1);
    border-width: 1px;
    border-color: hsla(0, 0%, 85%, 1);
    border-style: solid;
}
.popup__accept-decline-password{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.ibutton__password-popup-accept-decline{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.ibutton__password--accept{
    transition: .1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 50%;
    background: hsl(24, 100%, 50%);
    color: white;
    border-radius: 3px;
    border-width: 3px;
    box-sizing: border-box;
    border-color: hsl(24, 100%, 50%);
    border-style: solid;
}
.ibutton__password--accept:hover{
    background: white;
    color: hsl(24, 100%, 50%);
}
.ibutton__password--decline{
    transition: .1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 50%;
    border-radius: 3px;
    border-width: 3px;
    box-sizing: border-box;
    border-color: hsl(24, 100%, 50%);
    border-style: solid;
    background: hsl(24, 100%, 50%);
    color: white;
    margin-left: 5px;
}
.ibutton__password--decline:hover{
    background: white;
    color: hsl(24, 100%, 50%);
}
.popup__accept-password{
    transition: .1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 50%;
    background: hsl(24, 100%, 50%);
    color: white;
    border-radius: 3px;
    border-width: 3px;
    box-sizing: border-box;
    border-color: hsl(24, 100%, 50%);
    border-style: solid;
}
.popup__accept-password:hover{
    background: white;
    color: hsl(24, 100%, 50%);
}
.popup__decline-password{
    transition: .1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 50%;
    border-radius: 3px;
    border-width: 3px;
    box-sizing: border-box;
    border-color: hsl(24, 100%, 50%);
    border-style: solid;
    background: hsl(24, 100%, 50%);
    color: white;
    margin-left: 5px;
}
.popup__decline-password:hover{
    background: white;
    color: hsl(24, 100%, 50%);
}
.popup__cancel{
    transition: .1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    background: hsl(24, 100%, 50%);
    color: white;
    border-radius: 3px;
    border-width: 3px;
    box-sizing: border-box;
    border-color: hsl(24, 100%, 50%);
    border-style: solid;
}
.popup__cancel:hover{
    background: white;
    color: hsl(24, 100%, 50%);
}
.device-login-message{
    color: hsl(24, 100%, 50%);
    margin-top: 10px;
}