.signup-body {
    padding: 0;
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #111C26; /* Ensure consistent background color */
    display: flex; /* Flexbox to center the form */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; /* Stack elements vertically */
    margin-left: 260px;
    width: calc(95% - 260px);
}

.sign-up-form {
    width: 90%;
    max-width: 400px;
    text-align: center;
    z-index: 1;
    padding: 0; /* Remove padding */
    margin: 20px; /* Adjust margin for spacing */
    color: white;
    font-weight: bold;
}

.sign-up-form h1 {
    color: #ffffff;
    font-family: sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-box {
    width: calc(100% - 30px); /* Adjust to leave space for the icon */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #111; /* Text color for input */
    background-color: white; /* Background color for input */
}

.input-box:focus {
    border-color: #007bff;
    outline: none;
}

.input-label {
    position: absolute;
    left: 10px;
    top: -12px; /* Keep the label above the input */
    font-size: 12px; /* Smaller label size */
    color: white;
    pointer-events: none;
}

.toggle-password-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888; /* You can adjust the color as needed */
}

button {
    width: 100%;
    color: #fff;
    padding: 10px;
    border-radius: 20px;
    font-size: 15px;
    margin: 10px 0;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: rgb(121, 121, 121);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

a {
    color: rgb(42, 171, 222);
    cursor: pointer;
}

body {
    background-color: #111C26; /* Match with login page */
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}

hr {
    border: 0;
    border-top: 1px solid #666;
    margin: 20px 0;
}

.signup-btn,
.login-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.signup-btn:hover,
.login-btn:hover {
    background-color: #777;
}

.transparentbox {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 10px;
}

.paddingtop {
    margin-top: 20px;
}



/* Small Display */
@media (max-width: 992px) {

    .signup-body {
        padding: 0;
        height: 100%;
        font-family: 'Roboto', Arial, sans-serif;
        background-color: #111C26; /* Ensure consistent background color */
        display: flex; /* Flexbox to center the form */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 0px;
        width: 95%;
    }

}


/* Small Display */
@media (max-width: 768px) {

    .signup-body {
        padding: 0;
        height: 100%;
        font-family: 'Roboto', Arial, sans-serif;
        background-color: #111C26; /* Ensure consistent background color */
        display: flex; /* Flexbox to center the form */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 0px;
        width: 95%;
    }

}

@media (max-width: 576px) {

    .signup-body {
        padding: 0;
        height: 100%;
        font-family: 'Roboto', Arial, sans-serif;
        background-color: #111C26; /* Ensure consistent background color */
        display: flex; /* Flexbox to center the form */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 0px;
        width: 95%;
    }

}
