* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #181818;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 900px;
    background: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
}

.register-section, .login-section {
    width: 50%;
    padding: 40px;
    text-align: center;
}

.login-section {
    border-right: 2px solid #333;
}

.logo-img {
    width: 200px;
    margin-bottom: 50px;
}

.human-img {
    width: 300px; /* Increased by 50% */
    margin: 20px 0;
    height: 350px;
    margin-right: 40px;
    margin-bottom: 50px;
}
.human1-img {
   
    margin-right: 40px;
    margin-bottom: 50px;
}
input {
    width: 100%;
    padding: 12px;
    background: #333;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.signin-btn{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    display: block;
}
.register-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    display: block;
}



.signin-btn { background: #007BFF; color: white; margin-top: 100px; }
.signin-btn:hover { background: #0056b3; }

.register-btn { background: #28a745; color: white; text-decoration: none; margin-top: 10px; }
.register-btn:hover { background: #1e7e34; }

@media (max-width: 768px) {
    .container { flex-direction: column; width: 90%; }
    .login-section, .register-section { width: 100%; border: none; }
}
