* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "segoe ui", verdana, helvetica, arial, sans-serif;
    font-size: 16px;
    transition: all 500ms ease; 
}
  
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-font-feature-settings: "liga" on; 
    background-color: #090c9b;
}
header{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100px; 
    background-color: #090c9b;
    color: #fbfff1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

header a{
    color: #fbfff1;
    transition: 0.4s;
}

.header a:hover{
    color: #b4c5e4;
}
.logo{
    height: 100px;
    padding-bottom: 5px;
} 

.navbar{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    padding-left: 400px;
    gap: 5px;
}

.nav-link{
    padding: 10px;
    align-items: center; 
}

.nav-link a{
    text-decoration: none;
    color: #b4c5e4;
    transition: 0.4s;
}

.nav-link a:hover{
    color: #fbfff1;
    border-bottom: 2px solid #fbfff1;
}
.login-btn{
    padding-right: 200px;
    align-items: center;
}
.btn{
    background-color: #fbfff1;
    color: #090c9b;
    font-size: 15px;
    border:2px solid #b4c5e4;
    border-radius: 9px;
    cursor: pointer;
    padding: 10px 20px;
    width: 100px;
}
.btn:hover{
    background-color: skyblue;
    color: #fbfff1;
    border:2px solid #fbfff1;
    transition: .6s;
}
.logout-btn{
    padding-right: 200px;
    align-items: center;
}
.btn{
    background-color: #fbfff1;
    color: #090c9b;
    font-size: 15px;
    border:2px solid #b4c5e4;
    border-radius: 9px;
    cursor: pointer;
    padding: 10px 20px;
    width: 120px;
}
.btn:hover{
    background-color: skyblue;
    color: #fbfff1;
    border:2px solid #fbfff1;
    transition: .6s;
}


p{
    color: #b4c5e4;
}

p a{
    color: #fbfff1;
    text-decoration: none;
    transition: .2s;
}

p a:hover{
    color: black;
}
.row {
    background-color: #090c9b;
    color: #fff;
    text-align: center;
    padding: 2em 2em 0.5em;
    width: 90%;
    margin: 2em	auto;
    border: px solid white;
    box-shadow: 10px 10px 6px 12px  rgba(0, 0, 0, .6);
    border-radius: 5px; 
}
.row h1 {
      font-size: 2.5em; 
      text-align: center;
      padding-right: 0px;
	  padding-left: revert-layer;
}
.row .form-group {
      margin: 0.5em 0; 
}
.row .form-group label {
    display: block;
    color: #fff;
    text-align: left;
    font-weight: 600; 
}
.row .form-group input, .row .form-group button {
    display: block;
    padding: 0.5em 0;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 0.5em;
    background-color: inherit;
    border: none;
    border-bottom: 1px solid #f4e9e9;
    color: #eee; 
}
.row .form-group input:focus, .row .form-group button:focus {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 1em 0.5em; animation: pulse 1s infinite ease;
}
.row .form-group button {
    border: 1px solid #fff;
    border-radius: 5px;
    outline: none;
    -moz-user-select: none;
    user-select: none;
    color: #f0f0f0;
    font-weight: 800;
    cursor: pointer;
    margin-top: 2em;
    padding: 1em; 
}
.row .form-group button:hover, .row .form-group button:focus {
  background-color: #fff; 
  color: #090c9b;
}
.row .form-group button.is-loading::after {
    animation: spinner 500ms infinite linear;
    content: "";
    position: absolute;
    margin-left: 2em;
    border: 2px solid #000;
    border-radius: 100%;
    border-right-color: transparent;
    border-left-color: transparent;
    height: 1em;
    width: 4%; 
}
.row .footer h5 {
    margin-top: 1em; 
}
.row .footer h5 a{
    color: goldenrod;
    transition: .2s;
}
.row .footer h5 a:hover{
    color: #f0f0f0;
}
.row .footer p {
    margin-top: 2em; 
}
.row .footer p .symbols {
    color: #444; 
}
.row .footer a {
    color: inherit;
    text-decoration: none; 
}
  
.information-text {
    color: #ddd; 
}
  
@media screen and (max-width: 320px) {
    .row {
      padding-left: 1em;
      padding-right: 1em; 
    }
    .row h1 {
        font-size: 1.5em !important; 
    } 
}
@media screen and (min-width: 900px) {
    .row {
      width: 50%; 
    } 
}
  