*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DepartureMono", sans-serif;
}

@font-face {
    font-family: 'DepartureMono-Regular';
    src: url('DepartureMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'DepartureMono-Regular', sans-serif;
    color: #FFFFFF;
    background-color: #39332F;
    max-width: 480px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
}

.row {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 50px;
    min-height: 100svh;
    justify-content: space-between;
}

.header {
    display: flex;
    gap: 20px;
    align-content: center;
    align-items: center;

    p {
        font-size: 13.8px;
        font-weight: 400;
    }
}

.step {
    display: none;
}

.show {
    display: flex!important;
}

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-video {
    position: relative;
    flex-direction: column;
}

.video-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 9 / 16;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
}

.video.playing ~ .play-button {
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.video-tagline {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 12px;
    padding-right: 12px;
    padding-left: 12px;
    width: 100%;
    pointer-events: none;

    p {
        font-size: 10px;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        transform: rotate(180deg);
    }
}

.share-button {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-radius: 100px;
    width: 100%;
    gap: 20px;
    color: #000000;
    background-color: #fff;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    margin-top: 48px;
    margin-bottom: 48px;
}

.footer {
    margin-top: 10%;
}

.step-register {
    margin-top: 50px;
    position: relative;
    flex-direction: column;
    align-items: start;
    width: 100%;
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    margin-bottom: auto;
    font-size: 19px;
}

.step-register label {
    font-weight: 700;
    font-size: 18px;
}

.step-register span {
    color: gray;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

.content-number {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    
    
    

    input {
        border: .5px solid #C6A0A0;
        height: 56px;
        width: 100%;
        background: linear-gradient(to right, #262424 100%, #353535 0%);
        color: #fff;
        padding: 0 10px;
        box-sizing: border-box;
        outline: none;
    }
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-button {
    width: 100%;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    border: none;
    align-items: center;
    padding: 0 24px;
    line-height: 1;
    font-size: 14px;
    background-color: rgba(255, 255, 255, .7);
    cursor: pointer;
    height: 50px;
}

.step-success {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

/* Loading */

.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #ddd;
    border-top-color: orange;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}
