body{
  font-family:Arial;
  background:#f4f6f9;
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.container1{
  width:100%;
  max-width:420px;
  margin:40px auto;
}
.card{
  background:white;
  border-radius:10px;
  padding:30px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.card-header{
  text-align:center;
  margin-bottom:20px;
}
.log{
  font-size:26px;
  margin-bottom:5px;
}
.subtitle{
  color:#666;
  font-size:14px;
}
.form-group{
  margin-bottom:15px;
  display:flex;
  flex-direction:column;
}
label{
  font-size:13px;
  margin-bottom:5px;
  color:#444;
}
input{
  padding:10px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:14px;
}
input:focus{
  outline:none;
  border-color:#2563eb;
}
button{
  width:100%;
  padding:10px;
  background:#2563eb;
  border:none;
  color:white;
  font-size:14px;
  border-radius:6px;
  cursor:pointer;
  margin-top:10px;
}
button:hover{
  background:#1d4ed8;
}

.container{
  max-width:500px;
  background:#fff;
  border-top:5px solid #003366;
  padding:40px;
  text-align:left;
  margin:40px auto;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
select{
  width:100%;
  padding:10px;
  margin-top:10px;
  margin-bottom:15px;
}
.success-message{
  background:#28a745;
  color:white;
  padding:15px;
  border-radius:8px;
  margin-top:20px;
}