bootstrap login form style : demo 37

Register Now

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)
                        

Register Now

CSS

(Fonts required: Roboto.)
                        .form-container{
                            font-family: 'Roboto', sans-serif;
                            padding: 42px 0 0 0;
                            position: relative;
                        }
                        .form-container .form-icon{
                            color: #fff;
                            background-color: #1E4AC5;
                            font-size: 50px;
                            text-align: center;
                            line-height: 95px;
                            height: 100px;
                            width: 100px;
                            border: 5px solid #fff;
                            border-radius: 50%;
                            box-shadow: 0 0 0 5px #20E4B2,0 0 20px rgba(0,0,0,0.3);
                            transform: translateX(-50%);
                            position: absolute;
                            top: 2px;
                            left: 50%;
                            z-index: 1;
                        }
                        .form-container .form-horizontal{
                            background-color: #2048C4;
                            font-size: 0;
                            padding: 80px 30px 30px;
                            box-shadow: 0 0 10px rgba(0,0,0,0.3);
                        }
                        .form-container .title{
                            color: #20E5B0;
                            font-size: 27px;
                            font-weight: 600;
                            text-align: center;
                            text-transform: uppercase;
                            letter-spacing: 0.5px;
                            margin: 0 0 25px;
                        }
                        .form-horizontal .form-group{
                            background-color: #fff;
                            width: calc(50% - 12px);
                            margin: 0 7px 25px 5px;
                            border-radius: 10px;
                            overflow: hidden;
                            display: inline-block;
                        }
                        .form-horizontal .input-icon{
                            color: rgba(0,0,0,0.3);
                            background-color: #20E5B0;
                            font-size: 18px;
                            text-align: center;
                            line-height: 39px;
                            height: 38px;
                            width: 48px;
                            vertical-align: top;
                            display: inline-block;
                        }
                        .form-horizontal .form-control{
                            color: #222;
                            background-color: transparent;
                            font-size: 15px;
                            font-weight: 400;
                            letter-spacing: 1px;
                            width: calc(100% - 53px);
                            height: 38px;
                            padding: 1px 10px 0 7px;
                            box-shadow: none;
                            border: none;
                            border-radius: 0;
                            display: inline-block;
                            transition: all 0.3s;
                        }
                        .form-horizontal textarea.form-control{
                            height: auto;
                            width: 100%;
                        }
                        .form-horizontal .form-control:focus{
                            box-shadow: none;
                            border: none;
                        }
                        .form-horizontal .form-control::placeholder{
                            color: #b5b5b5;
                            font-size: 15px;
                            font-weight: 400;
                            text-transform: capitalize;
                        }
                        .form-horizontal .btn{
                            color: #fff;
                            background-color: #20E5B0;
                            font-size: 18px;
                            font-weight: 500;
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            padding: 10px 15px 7px 20px;
                            margin: 0 auto;
                            border: none;
                            border-radius: 10px;
                            box-shadow: 0 5px 0 rgba(0,0,0,0.5);
                            display: block;
                            transition: all 0.3s ease 0s;
                        }
                        .form-horizontal .btn:hover,
                        .form-horizontal .btn:focus{
                            color: #2048C4;
                            background-color: #fff;
                            box-shadow: none;
                        }
                        @media only screen and (max-width:576px){
                            .form-container .form-group{
                                width: 100%;
                                margin: 0 0 25px;
                            }
                        }
                    
License Terms