123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*форма регистрации*/
- .forms-content{
- border: 3px solid rgb(62, 58, 58);
- border-radius: 20px; /* добавляем закругленные углы */
- margin: 0 10%;
- position: relative;
- }
- .login-form {
- display: flex;
- flex-direction: column;
- padding: 5%;
-
- }
- .login-label {
- margin-bottom: 5px;
- margin-top: 10px;
- color: black; /* Цвет текста белый */
- font-size: 30px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
- font-weight: bold;
- }
- .login-input {
- padding: 8px;
- margin-bottom: 10px;
- border: 2px solid black;
- border-radius: 5px;
-
- font-size: 25px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
- }
- .login-input option{
- background-color: rgb(179, 171, 139) ;
- color: black;
- font-size: 25px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
-
- }
- .login-input select{
- background-color: rgb(179, 171, 139) ;
- color: black;
- border: 2px solid black;
- border-radius: 5px;
- font-size: 15px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
- font-weight: bold;
- }
-
- .login-btn{
- margin-top: 30px;
- padding: 10px 20px;
- background-color: #000;
- border: none;
- border-radius: 5px;
- color: white;
- transition: box-shadow 0.3s ease;
- font-size: 30px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
-
- }
- .login-btn:hover{
- box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
- }
|