
.logintitle{
    /* color: black; */
    /* color: white; */
    color: black;
    font-size: 1.75rem;
    /* font-family: 'calibri'; */
    /* margin-top: 20px;
    margin-bottom: 20px; */
    font-family: 'dmsans';
    font-weight: 900;
}

.logincontainer{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logintitle-row{
  display: flex;
  flex-direction: row;
  align-items: center;
      margin-top: 20px;
       margin-bottom: 20px;
       gap: 5px;
}


.back-to-home{
  display: flex;
  flex-direction: row;
  cursor: pointer;
    transform: translateX(300px) translateY(50px);
        font-size: 1.5rem;
  font-weight: 100;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  gap: 5px;
}
.back-to-home-text{
  transform: translateY(10px);

}


.control-center-title{
  font-size: 1.5rem;
  font-weight: 100;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.loginbox{
    margin-top: 100px;
    background-color: white;
    /* height: 500px; */
    height:330px;
    width: 400px;
    /* width:500px; */
    /* border-radius: 20px; */
        border-radius: 15px;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
                0 32px 64px -48px rgba(0,0,0,0.5);
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.def-link {
  text-decoration: none;
  color: black;
}


.loginbox form {
  width: 325px; /* or a fixed width like 80% */
  display: flex;
  flex-direction: column;
  align-items: center; /* center form contents */
  /* gap: -10px; */
}

form input {
  width: 100%;
  padding: 12px 16px;
  /* margin: 5px 0; */
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}


form button{
    background: white;
    font-size: 0.95 rem;
    color: rgb(144,178,255);
    cursor: pointer;
    border: solid 1px;
    border-color: rgb(144,178,255);
    border-radius: 40px;
    /* width: 50px;
    height: 20px; */
    transition: background 0.2s;
    transition: color 0.2s;
    padding: 8px 16px;  
    /* min-width: 80px; */
    width: 115px;
    height: auto;
}

form button:hover {
  /* background-color: #eaeaea; */
  background-color: rgb(144,178,255);
  color: white;
}

 @font-face {
  font-family: 'dmsans';
  src: url('/fonts/DMSans-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'dmsans';
  src: url('/fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'dmsans';
  src: url('/fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
}