body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FCFAF1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding: 40px;
    padding-left: 40px;
    padding-right: 100px;
    padding-top: 15px;
}

.logo img {
    height: 180px;
    transform: translateX(-40px);
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-button {
    height: 2.7rem;
    background-color: #333; /* Black background color */
    color: white; /* White text color */
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 1px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    margin-top: 30px;
    transition: background-color 0.3s, color 0.3s , border 0.3s; /* Smooth transition for hover effect */
}

.nav-button:hover {
    background-color: #FCFAF1; /* White background on hover */
    color: #333;
}

.social {
    display: flex;
    flex-direction: column;
}

.social p {
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    margin: 5px;
}

.sign-up-container {
    background-color: #FCFAF1; /* Same as body background color */
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    margin: 40px auto;
    margin-top: 0;
    padding-top: 0;
}

.sign-up-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    color: #333;
    font-size: 3rem;
    margin-top: 0px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 1px;
    outline: none;
    background-color: #FCFAF1;
    color: black;
}

input:focus {
    border: 1px solid #333;
}

.sign-up {
    background-color: #333; /* Black button color */
    color: white;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2em;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}

.sign-up:hover {
    background-color: #FCFAF1; /* White background on hover */
    color: #333; /* Black text color on hover */
}

.log-in {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #333; /* Dark color for the link */
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
}

.log-in span {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 20px;
    }

    .login-container {
        margin: 20px;
    }
}
