* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Calibri';
}

.center {
  display: flex;
  justify-content: center;  
  align-items: center;  
  height: 100vh; 
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 15px;
  width: 400px;
  text-align: center;
  border-radius: 5px;
}

/* Header */
.modal-header {
  font-weight: bold;
  text-align: left;
  min-height: 30px;
  font-size: 20px;
}

/* Body */
.modal-body {
  min-height: 80px;
}

.close {
  color: red;
  float: right;
  cursor: pointer;
  vertical-align: top;
}

input {
  padding: 10px;
  margin: 10px;
  border: 1px solid #7FC7D9;
  outline: none;
  border-radius: 3px;
  width: 95%;
}

button {
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #0F1035;
  background-color: #0F1035;
  color: #DCF2F1;
  cursor: pointer;
  font-weight: bold;
}

hr {
  margin-top: 10px;
  margin-bottom: 5px;
}