* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f2f5;
}

.login-container {
    display: flex;
    width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-image {
    flex: 1;
    background: #4267b2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-image img {
    max-width: 100%;
    height: auto;
}

.login-form {
    flex: 1;
    padding: 75px;
    text-align: center;
}

.login-form h2 {
    margin-bottom: 10px;
    color: #333;
}

.login-form p {
    color: #777;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group i {
    color: #4267b2;
    margin-right: 10px;
}

.input-group input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 16px;
    margin-left: 10px;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #4267b2;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #005a9e;
}

.register-link {
    margin-top: 10px;
    font-size: 14px;
}

.register-link a {
    color: #4267b2;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-image {
        display: none;
    }
}

