body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #2b1818;
    color: #fff;
    overflow-x: hidden;
}

.background-binary {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url("img/bg.png") repeat;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px;
}

.signup-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 3vw;
}

.signup-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.input-wrap {
    display: flex;
    flex-direction: column;
}

.text-input {
    background: none;
    border: none;
    border-bottom: 2px solid orange;
    padding: 12px 10px;
    color: white;
    font-size: 16px;
    outline: none;
}

.otp-input {
    background: none;
    border: 2px solid orange;
    border-radius: 999px;
    padding: 14px 20px;
    color: white;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.input-row {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-row .text-input,
.input-row .otp-input {
    padding-right: 110px;
    flex: 1;
}

.inline-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: orange;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid orange;
    padding-left: 8px;
}

.inline-link:hover {
    color: #f5a623;
}

/* Status Messages */
.status-message {
    font-size: 14px;
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.status-message span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-message .valid {
    color: #00ff66;
}

.status-message .invalid {
    color: #ff4444;
}

.green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff66;
    border-radius: 50%;
}

.red-cross {
    color: #ff4444;
    font-size: 14px;
}

.status-message.otp {
    font-size: 15px;
}

.otp-valid {
    color: #00ff66;
    font-weight: 500;
}

.otp-invalid {
    color: #ff4444;
    font-weight: 500;
}

.btn-green {
    margin-top: 10px;
    background: #7fff4f;
    color: #111;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-green:hover {
    background: #64d93f;
}

.divider {
    width: 2px;
    background: #fff;
    height: 80%;
    margin: 0 3vw;
    opacity: 0.3;
}

.portal-title {
    color: #fbb532;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.signup-title {
    font-size: 22px;
    margin: 8px 0 24px;
}

.back-login {
    color: #fbb532;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

.back-login:hover {
    color: #f5a623;
}

.logo-wrap {
    margin-top: 80px;
}

.logo-wrap img {
    width: 300px;
}

@media (max-width: 960px) {
    .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .divider {
        width: 60%;
        height: 2px;
        margin: 40px 0;
    }

    .signup-right {
        align-items: center;
        text-align: center;
        margin-left: 0;
    }
}

.status-message .valid,
.status-message .invalid {
    display: none;
}