body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    /* Black background */
    color: #fff;
    background-color: #13171A;
    /* White text */
}

.signup-choice {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 100px;
    /* Offset from fixed header */
}

.signup-choice h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.signup-choice p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.choice-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.choice-card {
    background-color: rgba(51, 51, 51, 0.9);
    /* Semi-transparent dark gray */
    border-radius: 10px;
    padding: 2rem;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex: 1;
    /* Make cards equal width */
    max-width: 300px;
    /* Limit the width */
    text-align: center;
}

.choice-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.choice-card p {
    font-size: 1rem;
    color: #D1D1D1;
}

.choice-card:hover {
    background-color: rgba(85, 85, 85, 0.9);
    /* Darker on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-form.active {
    display: flex;
}

.form-container {
    /* background: rgba(78, 78, 78, 0.9); */
    /* Semi-transparent dark gray */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: end;
}

.form-container h2 {
    margin-bottom: 1.5rem;
}




.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5rem;
    color: #D1D1D1;
    cursor: pointer;
}

.close-btn:hover {
    color: #FF2C57;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    /* Light border at the top */
    color: #fff;
    /* White text */
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer .social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

footer .social-links a:hover {
    color: #ff6347;
    /* Tomato color on hover */
    transform: scale(1.2);
}

footer .social-links a .icon {
    width: 30px;
    /* Size for the icons */
    height: 30px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #D1D1D1;
    /* Light gray text */
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    /* Light border at the top */
    color: #fff;
    /* White text */
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer .social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

footer .social-links a:hover {
    color: #ff6347;
    /* Tomato color on hover */
    transform: scale(1.2);
}

footer .social-links a .icon {
    width: 30px;
    /* Size for the icons */
    height: 30px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #D1D1D1;
    /* Light gray text */
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.9);
    /* Semi-transparent dark gray */
    padding: 0.5rem;
    border-radius: 30px;
    /* Rounded structure */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Subtle shadow */
    width: 500px;
    /* Adjusted width */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Light border */
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.search-bar .search-icon {
    margin-right: 0.5rem;
    width: 24px;
    /* Size for the search icon */
    height: 24px;
    fill: #fff;
}

.search-bar input[type="text"] {
    background-color: transparent;
    /* Transparent background */
    border: none;
    color: #fff;
    padding: 0.5rem;
    width: 100%;
    /* Use available width */
    outline: none;
    border-radius: 0 30px 30px 0;
    /* Rounded right corners */
    transition: width 0.4s ease-in-out, background-color 0.3s ease-in-out;
}

.search-bar input[type="text"]::placeholder {
    color: #D1D1D1;
    /* Light Gray placeholder */
}

.search-bar:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    /* Enhanced shadow on hover */
    background-color: rgba(51, 51, 51, 1);
    /* Darker background on hover */
}

.login-icon {
    font-size: 35px;
}

@media (max-width: 768px) {
    .login-icon {
        font-size: 28px;
    }
}