* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    height: 100vh;
}

.register-wrapper {
    display: flex;
    width: 100%;
}

.register-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    max-width: 600px;
}

.register-left h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
}

.register-left p {
    margin-bottom: 2rem;
    color: #555;
}

form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

form button {
    width: 100%;
    padding: 0.75rem;
    background-color: #0d47a1;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 0.5rem;
}

form button:hover {
    background-color: #08306b;
}

.register-footer {
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.register-footer a {
    font-weight: bold;
    color: #0d47a1;
    text-decoration: none;
}

.error-msg {
    color: red;
    margin-bottom: 1rem;
    text-align: center;
}

.checkbox{
/* background:orange; */
display:flex;
align-items: center;
font-size:14px;
}
.checkbox > input{
background:green;
width: 20px;
margin-top:15px;
}
.checkbox > a{
/* background:yellow; */
padding-left:6px;
text-decoration: none;
}

.register-right {
    flex: 1;
    background-image: url('../../public/img/login_2.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .register-wrapper {
    flex-direction: column;
    }
    .register-right {
    display: none;
    }
}