@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  font-family: "Poppins", sans-serif;
}
    


body {
    height: 100vh;
    background-color: #f2f2f2;
}

.register-form {
    display: flex;
    flex-direction: row;
}

.inputs {
    width: 100%;
    display: flex;
}
form {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    width: 90%;
    height: 80%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;

    
}

.footer {
    margin-bottom: 50px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: none; 
    border-bottom: 2px solid #4CAF50; 
    outline: none; 
    background: none;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    width: 50%;
   padding: 5px;
    border-radius: 10px;
    margin-left: 25%;
    transition: transform 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
    transform: scale(1.1); 
}

.inputs select, input[type="date"] {
    width: 100%;
    padding: 10px;
}
.error {
    color: red;
    margin-top: 10px;
}

.input1, .input2 {
    width: 100%;
    display: flex;
}

.right, .left {
    width: 100%;
    
    margin: 30px;
}