/* ==========================================
   Register Page
========================================== */

.register-page{

    min-height:100vh;

    display:flex;

    border-radius:16px;

    overflow:hidden;

    align-items:center;

    justify-content:center;

    padding:80px 20px;

    background:
        radial-gradient(circle at top right,#DDF7F6 0%,transparent 30%),
        radial-gradient(circle at bottom left,#EAF6FF 0%,transparent 35%),
        var(--register-background);

}

/* ==========================================
   Wrapper
========================================== */

.register-wrapper{

    width:100%;

    max-width:720px;

}

/* ==========================================
   Card
========================================== */

.register-card{

    position:relative;

    overflow:hidden;

    background:var(--register-white);

    border-radius:28px;

    padding:45px;

    border:1px solid var(--register-border);

    box-shadow:

        0 25px 60px rgba(15,23,42,.08),

        0 5px 12px rgba(15,23,42,.04);

}

/* Decoration */

.register-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    top:-120px;

    right:-120px;

    background:rgba(10,147,150,.08);

}

.register-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    bottom:-90px;

    left:-90px;

    background:rgba(56,189,248,.08);

}

/* ==========================================
   Header
========================================== */

.register-header{

    text-align:center;

    margin-bottom:40px;

    position:relative;

    z-index:2;

}

.register-icon{

    width:82px;

    height:82px;

    margin:auto;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0A9396,#38BDF8);

    margin-bottom:20px;

}

.register-icon svg{

    width:34px;

    height:34px;

    color:#ffffff;

}

.register-header h1{

    color:var(--register-title);

    font-size:2.3rem;

    font-weight:700;

}

/* ==========================================
   Footer
========================================== */

.register-signin{

    margin-top:35px;

    text-align:center;

    color:#64748B;

    font-size:15px;

}

.register-signin a{

    color:var(--register-primary);

    text-decoration:none;

    font-weight:700;

}

.register-signin a:hover{

    text-decoration:underline;

}