123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- form {
- width: 450px;
- .form-input {
- width: 100%;
- label {
- margin-bottom: 5px;
- font-size: 13px;
- span {
- margin: 0 5px;
- }
- }
- input,
- select {
- padding: 15px 20px;
- border-radius: 10px;
- box-shadow: 0px 5px 6px #2f2c8324;
- border: 0.5px solid #2e368f;
- border-radius: 10px;
- outline: none;
- }
- }
- }
- h2 {
- color: #2e368f !important;
- padding-top: 20px;
- font-size: 18px;
- }
- .button {
- padding: 10px 40px;
- width: inherit;
- background-color: #28abe3;
- color: #fff !important;
- border-radius: 10px;
- border: 1px solid #28abe3;
- cursor: pointer;
- font-weight: bold;
- font-size: 15px;
- transition: all 0.5s;
- &:hover {
- background-color: #1877f2;
- }
- }
|