body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('bg_image.jpg') no-repeat center center/cover;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
    width: 100%;
}

.logo {
    width: 80px;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

p {
    font-size: 14px;
}

.buttons {
    margin-top: 10px;
}

.btn {
    background: #6A5ACD;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
}

.login-panel {
    background: #1c1c3c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

.login-box input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .overlay, .login-panel {
        width: 45%;
    }
}
