* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(https://camo.githubusercontent.com/ebf18cd85f7aa9dc79fb74c58dc94febf3a6441d8d689cd5a400b2707e19ec0e/68747470733a2f2f7765622e77686174736170702e636f6d2f696d672f62672d636861742d74696c652d6461726b5f61346265353132653731393562366237333364393131306234303866303735642e706e67) repeat;
    background-size: 750px auto;
    background-color: #ece5dd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper {
    width: 100%;
    max-width: 420px;
}

header {
    background-color: #308e83;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 35px;
    width: 100%;
}


h1 {
    margin: 10px 0;
}


.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    background-color: #308e83;
}

.tab {
    color: white;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
}

.tab.active {
    font-weight: bold;
    border-bottom: 3px solid white;
}

.container {
    max-width: 380px;
    background-color: white;
    margin: 20px auto;
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.container p {
    margin: 15px 0;
}

.container input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.secure-bar {
    background-color: #308e83;
    color: white;
    padding: 10px;
    border-radius: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 40px;
    max-width: 380px;
}

.container button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background-color: #1daa61;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container button:hover {
    background-color: #55BC84;
    color: #f9f9f9;
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

p.error-text {
    font-size: 14px;
    margin: 5px 0 !important;
    color: rgb(247, 90, 90);
}

.menu-inferior {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    background-color: #ffffff;
    border-top: 1px solid #308e83;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 999;
}

.menu-inferior a {
    color: #308e83;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
}

.menu-inferior a i {
    font-size: 18px;
    margin-bottom: 4px;
}

#popupPremio {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.popup {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 7px 7px 13px 0px rgba(64, 61, 64, 0.23);
    background-color: white;
    padding: 10px 24px 24px 24px;
    border-radius: 10px;

    /* animação */
    animation: popup 0.4s ease-out forwards;
}

.title-popup {
    color: #636161;
    font-size: 20px;
    animation: pulse 0.8s ease-out infinite;
}

.hidden {
    display: none !important;
}


@keyframes popup {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
}