/* Fullscreen background video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Centered sign-up form */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Enlarged sign-up box */
.signup-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 400px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

/* Heading */
.signup-box h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Input fields */
.input-group {
    margin: 15px 0;
    text-align: left;
}

.input-group label {
    color: white;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
}

/* Password input field with eye icon */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    flex: 1;
    padding-right: 40px; /* Space for eye icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: gray;
    user-select: none;
}

.toggle-password:hover {
    color: white;
}

/* Submit button */
button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #ff5722;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

button:hover {
    background: #e64a19;
}
