*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Vazirmatn';
}

body{

    min-height:100vh;

    background:
    linear-gradient(
    135deg,
    #f8f9ff,
    #eef2ff
    );

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

.register-container{

    width:100%;
    max-width:520px;
}

.register-card{

    background:#fff;

    padding:40px;

    border-radius:32px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

    border:1px solid #ececec;
}

.logo{

    text-align:center;

    font-size:32px;

    font-weight:700;

    color:#6C63FF;

    margin-bottom:20px;
}

h1{

    text-align:center;

    margin-bottom:10px;

    color:#111827;
}

.subtitle{

    text-align:center;

    color:#6b7280;

    margin-bottom:30px;
}

form{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.field{

    position:relative;
}

.field input{

    width:100%;

    height:62px;

    border:2px solid #e5e7eb;

    border-radius:18px;

    padding:0 20px;

    font-size:15px;

    background:#fafbff;

    transition:.25s;
}

.field input:focus{

    outline:none;

    border-color:#6C63FF;

    background:#fff;

    box-shadow:
    0 0 0 5px rgba(108,99,255,.12);
}

.register-btn{

    height:62px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    color:white;

    background:
    linear-gradient(
    135deg,
    #6C63FF,
    #8B5CF6
    );

    transition:.25s;
}

.register-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(108,99,255,.25);
}

.divider{

    text-align:center;

    margin:25px 0;

    color:#9ca3af;
}

.login-link{

    display:block;

    text-align:center;

    text-decoration:none;

    color:#6C63FF;

    font-weight:700;
}

.login-link:hover{

    opacity:.8;
}

@media(max-width:600px){

    .register-card{

        padding:25px;
    }

}