/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Login Container */
.login {
    display: flex;
    width: 60%;
    max-width: 900px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 50px;
}

/* Left Side - Image */
.img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 25px 0 0 25px;
}

/* Right Side - Form */
.box2 {
    width: 50%;
    padding: 40px;
    text-align: center;
}

.box2 h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.box2 label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin: 10px 0 5px;
}

.box2 input[type="text"],
.box2 input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.box2 button {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.box2 button:hover {
    background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login {
        flex-direction: column;
        width: 90%;
    }

    .img {
        width: 100%;
        height: 200px;
    }

    .box2 {
        width: 100%;
        padding: 20px;
    }
}
