body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: #1c1c1c;
    color: #fff;
}

.container {
    display: flex;
    height: 100vh;
}

.left-section {
    flex: 1;
    background-color: #141414;
    color: #ffa500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.left-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.left-section p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.left-section img {
    width: 300px;
    opacity: 0.85;
}

.right-section {
    flex: 1;
    background-color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.right-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffa500;
}

form {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

input {
    padding: 12px;
    margin-bottom: 15px;
    background-color: #2b2b2b;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

input::placeholder {
    color: #bbb;
}

.register-button {
    padding: 12px;
    background-color: #ffa500;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-button:hover {
    background-color: #ffb733;
}

.redirect-text {
    margin-top: 15px;
    color: #ccc;
}

.redirect-text a {
    color: #ffa500;
    text-decoration: none;
}

.redirect-text a:hover {
    text-decoration: underline;
}

.error-message {
    color: #ff4b4b;
    margin-top: 10px;
    display: none;
}
