html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  overflow: hidden;
}

#root {
  height: 100%;
  width: 100%;
}



code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

iframe#webpack-dev-server-client-overlay {
  display: none;
}

.MuiTabs-root .MuiTabs-scrollButtons.Mui-disabled {
  opacity: 0.3 !important;
}

.bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
}

.deepskyblue {
  background-color: deepskyblue;
}

.dark-gray {
  background-color: #444;
}

.green {
  background-color: green;
}

.split {
  display: flex;
  height: 100%;
  width: 100%;
}


.split .gutter {
  background-color: #e0e0e0;
  width: 10px;
  position: relative;
  border-radius: 3px;
}


.split .gutter:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 30px;
  background: #b0b0b0;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}

.split .gutter:hover {
  cursor: col-resize;
}
.App {
  text-align: center;
  height: 100%;
  width: 100%;
}


.App-header {
  background-color: #282c34;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
  width: 100%;
  /* height: 100%; */
}


.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-image: url(/2f2de7eec1101828df6f.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
}

.login-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 220px;
  display: flex;
}

.login-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-left: 15px;
}

.login-logo
{
  background-image: url(/0b1402e3048ae27fdf2e.png);
  height: 100%;
  width: 240px;
  /* float:left; */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
}
.input-container {
  display: flex;
  align-items: center;
  width: calc(100% - 22px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;

  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-fields
{
    width: 60%;
    margin:15px;
    margin-top:0px;
}
.input-icon {
  margin-right: 10px;
}

.input-field {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 100%;
  font-size: 14px;
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.login-button {
  background: #D1CC00;
  color: white;
  font-weight: 800;
  padding: 10px;
 
  
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  width:100%;
}

.login-button:hover {
  background: rgb(48, 65, 86);
  color: white;
}

.login-button:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
}

.test-info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 45px;
  margin-top: 45px;
}

.clock-icon {
  margin-right: 10px;
}

.test-text {
  color: white;
}

input:-internal-autofill-selected {
  -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
  -webkit-text-fill-color: #333;
}

