* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: url("market-bg.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}

.register-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.brand-box {
    color: white;
    max-width: 500px;
}

.brand-box h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.brand-box p {
    font-size: 20px;
    line-height: 1.6;
    color: #f1f1f1;
}

.form-box {
    width: 100%;
    max-width: 380px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    color: white;
}

.form-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    color: #e8e8e8;
    text-align: center;
    margin-bottom: 25px;
}

.form-box form {
    display: flex;
    flex-direction: column;
}

.form-box input {
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 15px;
}

.form-box input::placeholder {
    color: #777;
}

.form-box button {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #ff6a00;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-box button:hover {
    background: #e55d00;
    transform: translateY(-2px);
}

.login-text {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

.login-text a {
    color: #ffd27a;
    text-decoration: none;
    font-weight: bold;
}

.login-text a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .register-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-box h1 {
        font-size: 40px;
    }

    .brand-box p {
        font-size: 18px;
    }
}
body{
height:100vh;
background-image:url("market-bg.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
}
