"Login Form"
Bootstrap 4.1.1 Snippet by JoaumTiago

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="wrapper fadeInDown"> <div id="formContent"> <!-- Tabs Titles --> <!-- Icon --> <div class="fadeIn first"> <img src="https://media.istockphoto.com/id/1132330364/vector/vector-illustration-icon-with-the-concept-of-online-auction-bidding-service-access.jpg?s=612x612&w=0&k=20&c=b8Ppc4EfGdLz3ZJI66Pgjetl7NrfSKL_hZ5r4S562bU=" id="icon" alt="User Icon" /> <h1>EbayKiller</h1> </div> <!-- Login Form --> <form class="row"> <div class="col-md-12 mb-3"> <input type="text" id="login" class="form-control fadeIn second" name="login" placeholder="Email"> </div> <div class="col-md-12 mb-3"> <input type="text" id="password" class="form-control fadeIn third" name="login" placeholder="Password"> </div> <div class="col-md-4"> <input type="reset" class="btn btn-outline-primary" value="Clear"> </div> <div class="col-md-7 text-right"> <input type="submit" class="btn btn-block btn-primary" value="Log In"> </div> </form> <!-- Remind Passowrd --> <div id="formFooter"> Don't have an account yet? <a class="underlineHover" href="#">Register</a> </div> </div> </div>
body { font-family: "Poppins", sans-serif; height: 100vh; } a { color: #92badd; display:inline-block; text-decoration: none; font-weight: 400; } h2 { text-align: center; font-size: 16px; font-weight: 600; text-transform: uppercase; display:inline-block; margin: 40px 8px 10px 8px; color: #cccccc; } /* STRUCTURE */ .wrapper { display: flex; align-items: center; flex-direction: column; justify-content: center; width: 100%; min-height: 100%; padding: 20px; } #formContent { -webkit-border-radius: 10px 10px 10px 10px; border-radius: 10px 10px 10px 10px; background: #fff; padding: 30px; width: 90%; max-width: 450px; position: relative; padding: 0px; -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3); box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3); text-align: center; } #formFooter { background-color: #f6f6f6; border-top: 1px solid #dce8f1; padding: 25px; text-align: center; -webkit-border-radius: 0 0 10px 10px; border-radius: 0 0 10px 10px; } /* TABS */ h2.inactive { color: #cccccc; } h2.active { color: #0d0d0d; border-bottom: 2px solid #5fbae9; } input[type=text] { background-color: #f6f6f6; border: none; color: #0d0d0d; padding: 15px 32px; text-decoration: none; display: inline-block; font-size: 16px; margin: 5px; width: 85%; border: 2px solid #f6f6f6; border-radius: 5px 5px 5px 5px; } input[type=text]:focus { background-color: #fff; border-bottom: 2px solid #5fbae9; } input[type=text]:placeholder { color: #cccccc; } input[type=submit], input[type=reset] { margin-bottom:15px; } h1{ color:#60a0ff; } /* OTHERS */ #icon { width:30%; }

Related: See More


Questions / Comments: