* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

@media (max-width: 350px) {
    html {
        font-size: 15px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #FFF;
}

.relative {
    position: relative;
}

.main-steps {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 2s ease;
    background-color: #000 !important;
    height: 100vh;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header .steps {
    width: 100%;
    display: flex;
}

.header .steps .step {
    flex: 1;
    height: 4px;
    visibility: hidden;
}

.visible {
    visibility: visible !important;
}

.bg1 {
    background: #ED742E;
    background: linear-gradient(90deg, rgba(237, 116, 46, 1) 0%, rgba(231, 50, 155, 1) 100%);
}

.bg2 {
    background: #E532A0;
    background: linear-gradient(90deg, rgba(229, 50, 160, 1) 0%, rgba(118, 55, 245, 1) 100%);
}

.close {
    width: 63px;
    height: 63px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    gap: 15px;
    max-width: 500px;
    margin: 60px auto;
}

.logo {
    max-width: 72px;
    max-height: 72px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.content h1 {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 30px;
}

.options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.options button {
    font-family: "Ubuntu";
    border: 1px solid #262626;
    border-radius: 30px;
    padding: 17px 25px;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.1px;
    background-color: #000;
    color: #FFF;
    text-align: left;
}

.options button:active {
    background-color: #606060;
}

.main-steps.step-1 {
    z-index: 3;
}

.main-steps.step-2 {
    z-index: 2;
}

.main-steps.step-3 {
    z-index: 1;
}

.main-steps.hide {
    left: -5000px;
}

p {
    margin: 0;
    padding: 0;
}

.identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.identity .title {
    display: flex;
    flex-direction: row;
    align-items: anchor-center;
    gap: 5px;
    margin-top: 10px;
}

.identity .title svg {
    width: 13px;
    height: 13px;
    color: #4687f1;
}

.identity .title p {
    font-size: 1rem;
    color: #FFF;
}

.identity .likes {
    font-size: 0.85rem;
    color: #b1b1b1;
}

.content.success {
    width: 70%;
    text-align: center;
    gap: 10px;
    margin-top: 150px;
}

.success img {
    width: 115px;
}

.success h1 {
    margin: 0;
    font-size: 1.5rem;
    margin-top: 20px;
}

.success p {
    font-size: 0.9rem;
    color: #A8A8A8;
}