
/* Basic styles for the Register pop-up */

}
.register-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #151515;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensures it is above other content */
    padding: 20px;
    border-radius: 5px;
    width: 250px; /* Set a width for the popup */
    text-align: center; /* Center-align text in the popup */
}
.overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 900; /* Below the popup but above other content */
}
.close-btn {
    cursor: pointer;
    color: red;
    float: right;
}
input[type="text"],
input[type="email"],
input[type="phone"] {
    width: 100%; /* Make inputs full width */
    padding: 10px;
    margin: 5px 0; /* Space between inputs */
    border: 1px solid #f5fffa;
    border-radius: 5px;
    background-color: transparent; /* Make background transparent */
    color: #f5fffa; /* Text color for better visibility on a transparent background */
    box-sizing: border-box; /* Include padding and border in width calculation */
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="phone"]::placeholder {
    color: #f5fffa; /* Placeholder color */
}


