#AddDownloadBtnClass {
    display: none;
}
.titleResponsive {
    width: 95%;
}
.login-container {
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}
.login-button:hover {
    background: #0056b3;
}
.fa-right-to-bracket {
    font-size: 18px;
}
@media (max-width: 650px) {
    .titleResponsive {
        width: 90%;
    }
}