/*body {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*    background-color: #f4f4f4;*/
/*    font-family: Arial, sans-serif;*/
/*}*/
.login-dialog {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 400px;
    margin-left: -200px;
    margin-top: -200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: white;
    display: none;
}
.title-bar {
    background: linear-gradient(to bottom, #fff9c4, #f0e68c);
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 -3px 7px rgba(0, 0, 0, 0.2);
}
.content {
    padding: 25px;
}
.content label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.content input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #eee;
    border-top: 1px solid #ccc;

    /*    justify-content: center;*/
    /*    align-items: center;*/
}
.nav-bar button {

    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
.cancel-btn {
    padding: 10px 20px;
    background-color: #ccc;
}
.login-btn {
    background-color: #28a745;
    color: white;
    width: 25%;
    /*margin-left: -10px;*/
}

.confirm-email {
    position: absolute;
    top: -50px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}