body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #000;
    color: #fff;
    width: 100%;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b388ff;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    width: 100%;
}

.login-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 20px;
    color: #6b4eff;
}

#login-form {
    display: flex;
    flex-direction: column;
}

#login-form input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #fff;
}

#login-form input::placeholder {
    color: #bbb;
}

.login-button {
    background-color: #6b4eff;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #593ed9;
}

.separator {
    margin: 20px 0;
    color: #bbb;
    position: relative;
    text-align: center;
}

.separator:before,
.separator:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #444;
}

.separator:before {
    left: 5%;
}

.separator:after {
    right: 5%;
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 120px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.google-button:hover {
    background-color: #e6e6e6;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .login-card {
        width: 100%;
        padding: 15px;
    }

    #login-form input {
        width: 90%;
        margin: 0 auto 15px auto;
    }

    .google-button {
        width: 90%;
        margin: 0 auto ;
    }

}
