/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url("xlsv.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    color: #262626;
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 20px;
}

.login-box {
    display: flex;
    width: 800px;
    height: 400px;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.login-image {
    width: 50%;
    background: url("xlsv.jpg") no-repeat center center;
    background-size: cover;
}

.login-form {
    width: 50%;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #a6af13;
}

input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #a6af13;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #262626;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #3e3e3e;
}

.forgot-password {
    display: inline-block;
    margin-top: 10px;
    color: #262626;
    font-size: 12px;
    text-decoration: none;
}
