* {
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-color: #F9F6EE;
}

.navbar{
    background-color: #0303ab;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-right: 20px;
    padding-left: 20px;
   
}

.login-register-button{
    background-color: #0303ab;
    color: white;
    border:1.5px solid white;
    width: 90px;
    padding: 7px 7px;
    font-weight: 600;
}

.login-register-button:hover{
    cursor: pointer;
    border: 1.5px solid white;
    color: #0303ab;
    background-color: white;
}

#welcome-message{
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    font-size: 60px;
}

.user-icon{
    width: 35px;
    height: 35px;
    background-color: #0264C5;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#user-name{
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.user-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 20px;
}

.user-container:hover{
    cursor: pointer;
    background-color: #03037f;
    
}


.user-container-wrapper{
    position: relative;
}

.user-options-container{
    background-color: white;
    position: absolute;
    top: 100%; 
    right: 0;
    z-index: 100;
    width: 150px;
    box-shadow: 0 0 5px 0px grey;
    margin-top: 5px;
}

.user-options{
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.user-options:hover{
    cursor: pointer;
    background-color: rgb(243, 240, 240);
}



/* Style for account settings card */

.account-settings{
    background-color: white;
    margin: 30px;
    display: inline-block;
    width: 250px;
    height: 100px;
}

h1{
    margin-right: auto;
    color: white;
}

h1:hover{
    cursor: pointer;
}

/* Styles for enable 2 factor window */

.enable-two-factor-wrapper{
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enable-two-factor{
    width: 400px;
    height: 400px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#qr-code{
    width: 200px;
    height: 200px;
}

#continue{
    border: none;
    color: white;
    background-color: #0303ab;
    font-weight: 600;
    padding: 10px 30px 10px 30px;
}

#continue:hover{
    cursor: pointer;
    background-color: #02028c;
}