123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- *{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 'Poppins',sans-serif;
- }
- body{
- background: #F5E6CE;
- overflow: hidden;
- }
- ::selection{
- background: rgba(26,188,156,0.3);
- }
- .container{
- max-width: 440px;
- padding: 0 20px;
- margin: 170px auto;
- }
- .wrapper{
- width: 100%;
- background: #fff;
- border-radius: 5px;
- box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
- }
- .wrapper .title{
- height: 90px;
- background: #000000;
- border-radius: 5px 5px 0 0;
- color: #fff;
- font-size: 30px;
- font-weight: 600;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .wrapper form{
- padding: 30px 25px 25px 25px;
- }
- .wrapper form .row{
- height: 45px;
- margin-bottom: 15px;
- position: relative;
- }
- .wrapper form .row input{
- height: 100%;
- width: 100%;
- outline: none;
- padding-left: 60px;
- border-radius: 5px;
- border: 1px solid lightgrey;
- font-size: 16px;
- transition: all 0.3s ease;
- }
- form .row input:focus{
- border-color: #000000;
- box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
- }
- form .row input::placeholder{
- color: #999;
- }
- .wrapper form .row i{
- position: absolute;
- width: 47px;
- height: 100%;
- color: #fff;
- font-size: 18px;
- background: #000000;
- border: 1px solid #000000;
- border-radius: 5px 0 0 5px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .wrapper form .pass{
- margin: -8px 0 20px 0;
- }
- .wrapper form .pass a{
- color: #697A4B;
- font-size: 17px;
- text-decoration: none;
- font-weight: 550;
- }
- .wrapper form .pass a:hover{
- text-decoration: underline;
- }
- .wrapper form .button input{
- color: #fff;
- font-size: 20px;
- font-weight: 500;
- padding-left: 0px;
- background: #000000;
- border: 1px solid #000000;
- cursor: pointer;
- }
- form .button input:hover{
- background: #000000;
- }
- .wrapper form .signup-link{
- text-align: center;
- margin-top: 20px;
- font-size: 17px;
- }
- .wrapper form .signup-link a{
- color: #697A4B;
- text-decoration: none;
- font-weight: 550;
- }
- form .signup-link a:hover{
- text-decoration: underline;
- }
- a {
- text-decoration: none;
- }
|