*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
}

/* PHONE */

.phone{
    width: 100%;
    max-width: 430px;

    min-height: 100vh;

    background:
    radial-gradient(circle at top, rgba(255,191,0,0.08), transparent 35%),
    linear-gradient(to bottom, #050505, #090909);

    border: 1px solid #222;
    border-radius: 40px;

    padding: 22px;

    overflow: hidden;

    box-shadow:
    0 0 40px rgba(255,191,0,0.08);
}

/* BACK */

.back-button{
    margin-bottom: 28px;
}

.back-button a{
    color: white;
    font-size: 28px;
    text-decoration: none;
}

/* LOGO */

.logo-section{
    display: flex;
    justify-content: center;

    margin-bottom: 42px;
}

.logo-section img{
    width: 190px;
}

/* TITLE */

.title-section{
    margin-bottom: 34px;
}

.title-section h1{
    font-size: 44px;
    line-height: 52px;
    font-weight: bold;

    margin-bottom: 10px;
}

.title-section p{
    color: #8b8b8b;
    font-size: 18px;
}

/* FORM */

.register-form{
    width: 100%;
}

/* INPUTS */

.input-box{
    width: 100%;
    height: 74px;

    background: rgba(17,17,17,0.95);

    border: 1px solid #242424;
    border-radius: 22px;

    display: flex;
    align-items: center;

    padding: 0 22px;

    margin-bottom: 18px;

    transition: 0.3s;
}

.input-box:focus-within{
    border-color: #d4a017;

    box-shadow:
    0 0 14px rgba(212,160,23,0.12);
}

.input-box i{
    color: #d4a017;
    font-size: 22px;
}

.input-box input{
    width: 100%;

    background: transparent;
    border: none;
    outline: none;

    color: white;

    font-size: 20px;

    margin-left: 18px;
}

.input-box input::placeholder{
    color: #727272;
}

.eye{
    color: #777;
    cursor: pointer;
    font-size: 22px;
}

/* BENEFITS */

.benefits{
    width: 100%;

    background:
    linear-gradient(to bottom, #121212, #0d0d0d);

    border: 1px solid #222;
    border-radius: 24px;

    padding: 24px 12px;

    margin-top: 8px;
    margin-bottom: 28px;

    display: flex;
    justify-content: space-between;

    gap: 6px;
}

.benefit{
    flex: 1;

    position: relative;

    padding: 0 12px;
}

.benefit:not(:last-child)::after{
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 82px;

    background: #222;
}

.benefit i{
    color: #d4a017;
    font-size: 28px;

    margin-bottom: 16px;
}

.benefit h3{
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit p{
    color: #8a8a8a;

    font-size: 14px;
    line-height: 20px;
}

/* BUTTON */

.create-btn{
    width: 100%;
    height: 74px;

    border: none;
    border-radius: 22px;

    background:
    linear-gradient(to right, #c69200, #f0bf3d);

    color: black;

    font-size: 28px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.create-btn:hover{
    transform: scale(1.01);
}

/* DIVIDER */

.divider{
    margin: 36px 0;

    text-align: center;
    position: relative;
}

.divider span{
    color: #777;
    font-size: 16px;

    background: #090909;

    padding: 0 16px;

    position: relative;
    z-index: 2;
}

.divider::before{
    content: "";

    position: absolute;

    width: 100%;
    height: 1px;

    background: #222;

    left: 0;
    top: 50%;
}

/* SOCIAL */

.social-buttons{
    display: flex;
    gap: 16px;

    margin-bottom: 34px;
}

.social-btn{
    flex: 1;
    height: 72px;

    background:
    linear-gradient(to bottom, #111, #0c0c0c);

    border: 1px solid #222;
    border-radius: 22px;

    color: white;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.social-btn i{
    font-size: 24px;
}

.social-btn:hover{
    border-color: #d4a017;
}

/* LOGIN */

.login-link{
    text-align: center;

    color: #8a8a8a;
    font-size: 18px;
}

.login-link a{
    color: #d4a017;
    text-decoration: none;
    font-weight: bold;
}