* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    width: 100%;
}

.container1{
    width: 45%;
    margin-left: 6rem;
    display: flex;
    flex-direction: column;
 

}
 
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    
    
}

.Logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 2rem;
    width: 70%;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    width: 70%;
    margin-top: -3rem;
    margin-bottom: 3rem;
    font-size: 40px;
    font-weight: 600;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    margin-bottom: 1.5rem;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 75%;
}

input:focus {
  border: 1px solid #0b3c8d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(11, 60, 141, 0.1);
}



button {
    padding: 16px 167px;
    margin-top: 1rem;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    
}

button:hover {
  background-color: #062f6e;
  color: white;
}

.side1 p {
    margin-top: 1rem;
    text-align: center;
    width: 70%;
}

.container2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: linear-gradient(135deg, #0b3c8d, #062f6e);
  width: 55%;
 
}
.side2 {
    width: 100%;
    height: 100vh;
}



.side2 h1{
    color: white;
    text-align: left;
    margin-top: 0.5rem;
    font-size: 45px;
    font-weight: 700;
}

.container2 p{
    color: white;
    text-align: left;
    width:100%;
    font-size: 18px;
}

.container2 .register{
    margin-top: 2rem;
    margin-left: 2rem;
    height: auto;
}

.error {
  color: #d32f2f;        
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
  
}



