 .registration-form{
                margin: 150px auto;
                
            }
            .registration-form form{
                background-color: #fff;
                max-width: 600px;
                margin: auto;
                padding: 100px 50px 20px 50px;
                border-top-left-radius: 30px;
                border-top-right-radius: 30px;
                box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
            }
            .input:focus {
                outline: none !important;
                border:1px solid #173d7a;
              }
            .registration-form .form-icon{
                text-align: center;
                border-radius: 50%;
                border-bottom-color: #173d7a;
                font-size: 40px;
                color: white;
                width: 200px;
                height: 200px;
                margin: auto;
                margin-bottom: 10px;
            }
            .registration-form .item{
                margin-bottom: 10px;
                padding: 10px 20px;
            }
            .registration-form .login-account{
                padding: 10px 20px;
                font-size: 18px;
                font-weight: bold;
                background-color: #173d7a;
                border: none;
                color: white;
            }
            .registration-form .social-media{
                max-width: 600px;
                background-color: #fff;
                margin: auto;
                padding: 20px 0;
                text-align: center;
                border-bottom-left-radius: 30px;
                border-bottom-right-radius: 30px;
                color: #173d7a;
                border-top: 1px solid #dee9ff;
                box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
            }
            .registration-form .social-icons{
                margin-top: 10px;
                margin-bottom: 10px;
            }
            .registration-form .social-icons a{
                font-size: 23px;
                margin: 0 3px;
                color: #173d7a;
                border: 1px solid;
                border-radius: 50%;
                width: 45px;
                display: inline-block;
                height: 45px;
                text-align: center;
                background-color: #fff;
                line-height: 45px;
            }
            .registration-form .social-icons a:hover{
                text-decoration: none;
                opacity: 0.6;
            }
            @media (max-width: 576px) {
                .registration-form form{
                    padding: 50px 30px;
                }
                .registration-form .form-icon{
                    width: 70px;
                    height: 70px;
                    font-size: 30px;
                    line-height: 70px;
                }
            }
            .perloader{
                position: absolute;
                top: 35%;
                right: 47%;
                border: 5px solid #173d7a;
                border-radius: 50%;
                border-top: 5px solid #fff;
                border-bottom: 5px solid #fff;
                width: 120px;
                height: 120px;
                -webkit-animation: spin 1s linear infinite; /* Safari */
                animation: spin 1s linear infinite;
                z-index: 99999;
            }
            @-webkit-keyframes spin {
              0% { -webkit-transform: rotate(0deg); }
              100% { -webkit-transform: rotate(360deg); }
            }
            @keyframes spin {
              0% { transform: rotate(0deg); }
              100% { transform: rotate(360deg); }
            }