body {
    font-family: 'Roboto', sans-serif;
    background-color: #1B2473;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
}

.container {
    position: absolute;
    top: 83px;
    left: 420px;
    width: 600px;
    height: 412px;
    border-radius: 20px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #787878;
    font-size: 50px;
    margin: 10px 0;
}

.login-form {
    padding: 20px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    width: 40;
    height: 16;
    margin-top: 10px;
    left: 8px;
    color: #787878;
}

input[type="email"],
input[type="password"] {
    width: 510px;
    height: 49px;
    top: 112px;
    left: 45px;
    width: 100%;
    border: 2px solid #787878;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #787878;
    padding: 7px 15px;
    box-sizing: border-box;
}

.web-form__checkbox {
  display: flex;
  align-items: center;
  color: #787878;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 10px; 
}

.web-form__hidden-checkbox {
  -webkit-appearance: none;
  position: absolute;
}

.web-form__checkbox .checkbox {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 2px solid #787878;
  background: #fff;
  position: relative;
  margin-right: 10px; 
}

.web-form__checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  height: auto;
  display: none;
}

.web-form__checkbox input:checked + .checkbox .checkmark {
  display: block;
}

button.submit-button {
    background-color: #1A226B;
    border: none;
    border-radius: 10px;
    width: 180px;              
    height: 52px;          
    cursor: pointer;   
    top: 334px;                
    left: 210px;    
    margin-top: 30px;              
}

.button-text {
    display: inline-block;    
    color:#FFFFFF;
    text-align: center;                  
    width: 69px;                              
    height: 16px;                              
    font-family: 'Roboto', sans-serif;         
    font-weight: 700;                         
    font-size: 24px;                           
    line-height: 16px;                         
    text-align: center;                                               
}