* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.logo h1 {
    font-size: 24px;
}

.login-register {
    display: flex;
    align-items: center;
}

.login-form input {
    margin-right: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.login-form button {
    padding: 10px 15px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.register-link {
    margin-left: 15px;
    padding: 10px 15px;
    background-color: #0275d8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Main Content (Hero Section) */
.hero {
    height: 100vh;
    background: url('roulette-wheel-glimmers-amidst-bustling-casino-floor.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .content {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero button {
    padding: 15px 30px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero button:hover {
    background-color: #c9302c;
}

/* Registration form section */
.register-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f4f4f4;
  
}

/* Form container styling */
.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Form heading */
.form-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Input field styling */
.form-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button styling */
.form-container button {
    width: 100%;
    padding: 12px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.form-container button:hover {
    background-color: #4cae4c;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
    .form-container {
        width: 90%;
    }
}
