.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Basic styling for the Google Sign-In button */
.login-with-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-bottom: 16px;
}

.login-with-google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.login-with-google-btn:hover {
    background-color: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-with-google-btn:active {
    background-color: #e1e1e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-with-google-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.3);
}

/* Styling for the ClickUp Sign-In button */
.login-with-clickup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #7B68EE;
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-bottom: 16px;
}

.login-with-clickup-btn img {
    width: 100px;
    height: 20px;
    margin-right: 12px;
}

.login-with-clickup-btn:hover {
    background-color: #6A5ACD;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-with-clickup-btn:active {
    background-color: #5B4ACD;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-with-clickup-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.3);
}

.loginContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 300px;
}

@media (max-width: 640px) {
    .loginContainer {
        margin-bottom: 200px;
    }
}