1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .subscribe-form{
- display: flex;
- justify-content: center;
- }
- .subscribe-form__input{
- background: #FFFFFF;
- border: 1px solid #F72464;
- box-sizing: border-box;
- border-radius: 4px;
- height: 42px;
- width: 230px;
- font-family: 'Noto Sans', sans-serif;
- font-style: normal;
- font-weight: normal;
- font-size: 16px;
- line-height: 1;
- color: #000;
- padding-left: 10px;
- padding-right: 10px;
- margin-right: 15px;
- }
- .subscribe-form__input::placeholder{
- color: #999999;
- }
- .subscribe-form__button{
- display: inline-block;
- border: none;
- background: #F72464;
- border-radius: 4px;
- padding: 13px 30px;
- font-family: 'Noto Sans', sans-serif;
- font-style: normal;
- font-weight: normal;
- font-size: 16px;
- line-height: 1;
- color: #FFFFFF;
- cursor: pointer;
- transition: box-shadow 0.2s ease-in background-color 0.2s ease-in;
- }
- .subscribe-form__button:hover{
- box-shadow: 0px 2px 15px rgba(184, 13, 64, 0.671);
- background-color: #ff3874;
- }
|