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

body,
html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transition: filter 0.3s ease;
}

.login-form {
    flex: 1;
    background-color: #fff;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-content {
    width: 100%;
    max-width: 480px;
}

.form-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.form-content form {
    display: flex;
    flex-direction: column;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

.input-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #996633;
    outline: none;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    background-color: #996633;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #7d5224;
}

.register-link {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.register-link a {
    color: #996633;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
    }

    .login-image {
        height: 200px;
    }

    .login-form {
        padding: 40px 20px;
    }
}