Spaces:
Sleeping
Sleeping
File size: 1,861 Bytes
490b2ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Helvetica;
color: #323232;
border: none;
}
body {
background-image: url('../img/bg7.jpg');
/* background-size: auto; */
background-repeat: no-repeat;
/* position:absolute(left); */
height: 80vh;
/* width: 90vw; */
background-size: contain;
/* width: 300px; */
}
textarea:focus, input:focus{
outline: none;
}
a {
font-size: .8rem;
}
a:hover {
color: #08558B;
/* border-color: #141414; */
}
/* container login */
#login-container {
/* align-self: flex-start; */
background-color: #FFF;
margin-left: 69%;
/* margin-right: 50%; */
/* margin-top: 10%; */
width: 400px;
padding: 35px 30px;
margin-top: 20vh;
margin-right: 20vh;
border-radius: 10px;
text-align: center;
/* font-size: .8rem; */
/* box-shadow: 3px 3px 3px 1.5px rgba(0, 0, 0, 0.2); */
/* box-shadow: 0 0 1em blue; */
}
/* formulário */
form {
margin-top: 50px;
/* margin-bottom: 0px; */
}
h1{
text-align: left;
}
label, input {
display: block;
width: 100%;
text-align: left;
}
label {
font-weight: bold;
font-size: .8rem;
}
input {
border-bottom: 2px solid #323232;
padding: 10px;
font-size: 1rem;
margin-bottom: 20px;
}
input:focus {
border-bottom: 2px solid #08558B;
}
#forgot-pass {
display: block;
text-align: right;
/* text-align: ; */
/* margin-bottom: 50%; */
}
input[type="submit"] {
text-align: center;
text-transform: uppercase;
border: 1px solid #08558B;
height: 40px;
border-radius: 20px;
margin-top: 30px;
cursor: pointer;
color: #FFF;
background-color: #08558B;
border-color: #08558B;
font-weight: bold;
}
input[type="submit"]:hover {
background-color: #ffffff;
transition: .5s;
color: #08558B;
border: 1px solid #08558B;
/* border-style: initial ; */
}
|