:root {
  --main-color: #3498db;
  --clr-bdr: #ececec;
}
body{
font-family: Inter, system-ui, sans-serif;

}
.border{
border: 1px solid #ac2828;
}

.logo-center{
  padding: 30px 0;
}
.logo{
  width:150px;height:50px;
}
.register-container {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 6px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.submit-btn {
width: 100%;
background-color: #409EFF;
color: white;
padding: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.submit-btn:hover {
background-color: #337ecc;
}