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

.modal-content {
    background-color: #2d2d31;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.modal-content h3 {
    margin-top: 0;
    color: #e0e7ff;
}

.modal-content label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.modal-content button {
    width: auto;
    padding: 8px 16px;
    margin-right: 10px;
}

.modal-content button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.single-page-container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container{
    max-width: 400px;
}

.login-container h2{
    text-align: center;
}

.google-login-button {
    background-color: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-login-button:hover {
    background-color: #357ae8;
}

.google-login-button img {
    height: 20px;
    margin-right: 10px;
}

