| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #navbar {
- display: none;
- }
- .register_page {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 75vw;
- background: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55) ), url(../images/back_main_one.jpg);background-repeat: repeat; background-position: center;
- }
- .register {
- width: 70%;
- height: 70%;
- margin-left: 15%;
- margin-right: 15%;
- background-color: #dbc3af;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- }
- .register_form {
- margin-bottom: 10%;
- }
- .header_title {
- text-align: center;
- color: #000000;
- font-size: 3.5vw;
- width: 100%;
- }
- .data_block {
- width: 100%;
- display: flex;
- flex-direction: column;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .form_data, .form_data_button {
- display: flex;
- flex-direction: column;
- margin-left: 2%;
- margin-left: 2%;
- }
- .form_data_button {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .input_data {
- color: #000000;
- border: 0.1vw solid #595008;
- height: 4.5vw;
- width: 60vw;
- background-color: #dbc3af;
- border-radius: 5vw;
- font-size: 1.3vw;
- }
- .input_button {
- width: 20vw;
- height: 5vw;
- border-radius: 5vw;
- vertical-align: middle;
- }
- .form-label {
- font-size: 1.3vw;
- }
- .register_button {
- margin-top: 15px;
- width: 20vw;
- height: 5vw;
- background-color: #000000;
- color: #ffffff;
- border-radius: 5vw;
- vertical-align: middle;
- font-size: 1.5vw;
- }
- .box {
- margin-left: 9vw;
- }
|