.auth-screen {
    min-height: 100vh;
    background: #1697a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Avenir Next", sans-serif;
}

.auth-container {
    height: 180px;
    width: 90%;
    background: #fff;
    margin: 0 10px;
    border-radius: 10px;
    padding: 40px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.auth-title {
    font-size: 34px;
    font-weight: 400;
    text-align: center;
    color: #2c516a;
    margin-bottom: 30px;
}

#pin-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pin-input,
#pin-repeat-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    pointer-events: none;
}
.pin-input-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.pin-dot {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid #2c516a;
    background: white;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.pin-dot.filled {
    background: #2c516a;
}

.pin-code-note {
    font-size: 14px;
    font-family: "Avenir Next", sans-serif;
    padding: 10px 12px;
}

.auth-continue-btn {
    width: 100%;
    padding: 13px;
    border-radius: 5px;
    background: #a0d1d1;
    color: #fff;
    font-weight: bold;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.18s;
}
/*.auth-continue-btn:disabled {*/
/*    background: rgba(200, 198, 198, 0.34);*/
/*    color: #f3f6fa;*/
/*    cursor: default;*/
/*}*/
.auth-error {
    color: #ff4b55;
    min-height: 18px;
    width: 200px;
    text-align: center;
    font-size: 17px;
    margin-top: 20px;
    font-family: "Avenir Next", sans-serif;
    font-weight: 500;
}

/******** Greetings *******/
.auth-greetings-screen {
    height: 100vh;
    background: #1697a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex:1;
    font-family: "Avenir Next", sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-logo {
    margin-top: 200px;
    flex: 1;
    pointer-events: auto;
}

.auth-text {
    flex: 1;
    font-weight: normal;
    font-size: 30px;
    text-align: center;
    color: #fff;
}

.auth-bottom {
    flex:0.5;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.auth-bottom div {
    height: 30px;
    font-weight: 400;
    padding: 15px 30px;
    width: 75%;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-log-in,
.auth-create-wallet  {
    width: 75%;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;

}

.auth-log-in {
    background: #2c516a;
    color: #fff;
}

.auth-create-wallet  {
    color: #253c54;
    font-size: 16px;
    background: #e5eaf0;
}

.auth-logo img {
    width: 220px;
}

.hidden {
    display: none; !important;
}


.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.slide-in-right {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.slide-in-right-active {
    transform: translateX(0);
    opacity: 1;
}

.auth-container.showing {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90%;
    z-index: 3;
}

.pin-hidden-input {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.01;
    z-index: 10;
    pointer-events: auto;
    caret-color: transparent;
    border: none;
    background: transparent;
}

@media (max-width: 385px) {
    .auth-container {
        padding: 50px 20px;
    }
}

.app-version {
    position: absolute;
    bottom: 0;
    color: rgb(227, 222, 222);
}