*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
    direction: rtl;
}

.phone {
    direction: rtl;
}

body{
    background:#f4f6f9;
}

.register-container{

    width:90%;
    max-width:1100px;

    margin:40px auto;
}

.page-header{

    text-align:center;

    margin-bottom:40px;
}

.page-header h1{

    color:#053734;

    font-size:38px;

    margin-bottom:10px;
}

.page-header p{

    color:#666;

    font-size:18px;
}

.register-card{

    background:#fff;

    border-radius:15px;

    margin-bottom:30px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    overflow:hidden;
}

.register-card h2{

    background:#053734;

    color:#fff;

    padding:18px;

    font-size:22px;
}

.register-card ul{

    padding:25px 45px;

    line-height:2.2;
}

.register-card li{

    color:#333;

    margin-bottom:10px;
}

.register-card p{

    padding:15px 30px;

    color:#444;

    line-height:2;
}

strong{

    color:#053734;
}

@media(max-width:768px){

    .register-container{

        width:95%;
    }

    .page-header h1{

        font-size:30px;
    }

    .register-card h2{

        font-size:20px;
    }

    .register-card ul{

        padding:20px 30px;
    }

    .register-card p{

        padding:15px 20px;
    }

}