html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #d3d3d3;
}


.navbar {
    background: rgb(63, 81, 181);
    background: linear-gradient( 45deg, rgba(63, 81, 181, 1) 0%, rgba(63, 81, 181, 0.7679446778711485) 47%, rgb(68, 68, 68) 100% );
    color: #ffffff;
}

.example-spacer {
    flex: 1 1 auto;
}

.container {
    max-width: 960px;
    color: black;
}
.section-styling {
    border-radius: 20px;
    border: 1px solid #000;
    margin-top: 50px;
    padding: 20px;
    width: 500px;
    background-color: white;
}

.LoginTitle {
    font-family: Roboto,Helvetica Neue,sans-serif;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.LoginText {
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.LogInButton {
    background-color: #1370eb;
    transition: .2s ease-in-out;
    color: #fff;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    outline: none;
    border: none;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    margin: 10px;
    min-width: 160px;
    line-height: 36px;
    padding: 5px 5px;
    border-radius: 4px;
    overflow: visible;
    box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.form-floating {
    background-color: #0000000a;
}

.LogInButton:disabled {
    opacity: 0.35;
}

.LogInButton:hover {
    background-color: #0f5cbf;
    transition: .2s ease-in-out;
}