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

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    min-height: 400px;
    /* overflow: hidden; */
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.form-container {
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    flex-shrink: 0;
    margin: auto;
}

.banner-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin-top: auto;
}

.banner-img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .banner-container {
        display: none;
    }
}

.logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.headline-1 {
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.headline-2 {
    text-align: center;
    color: #5eb5ff;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;

    @media (max-width: 768px) {
        font-size: 25px;
    }
}

.input-group {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    background: white;
    font-size: 16px;
    color: #333;
}

.input-field::placeholder {
    color: #999;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #5eb5ff;
    font-size: 18px;
}

.agreement {
    text-align: center;
    color: white;
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.rules-link {
    color: #5eb5ff;
    text-decoration: underline;
    cursor: pointer;
}

.rules-link:hover {
    color: #7fc5ff;
}

.btn-register {
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, #0051a3, #5eb5ff);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login {
    background: linear-gradient(to top, #4ce900, #4ce892);
    margin-bottom: 15px;
}

.btn-register:hover {
    transform: scale(1.02);
}

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

.login-link a {
    color: white;
    text-decoration: underline;
}

