Spaces:
Runtime error
Runtime error
File size: 2,720 Bytes
b9a69cb |
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
body {
height: 150vh;
}
.container {
display: grid;
position: relative;
margin-top: 40px;
max-width: 100vh;
background-color: var(--grey);
flex-wrap: wrap;
box-sizing: border-box;
border-radius: 10px;
box-shadow:
-3px 0 5px rgba(0, 0, 0, 0.3),
3px 0 5px rgba(0, 0, 0, 0.3);
}
.form-row {
border-radius: 10px;
}
.form-row label {
margin-right: 250px;
}
.form-group {
margin: 20px 0 20px 20px;
display: grid;
gap: 2px;
padding-top: 30px;
}
.labelClass {
padding-bottom: 6px;
font-weight: 500;
font-size: 18px;
}
label {
white-space: nowrap;
}
.labelHeader {
display: block;
/* Garante que a label ocupe toda a largura disponível */
font-size: 2em;
/* Tamanho de fonte semelhante ao de um h1 */
font-weight: bold;
/* Negrito semelhante ao de um h1 */
margin-bottom: 10px;
/* Margem inferior semelhante à de um h1 */
color: #333;
/* Cor do texto semelhante à de um h1 */
}
.form-row.with-top-border {
position: relative;
}
.form-row.with-top-border::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 7px;
/* Ajuste a altura da linha conforme necessário */
background-color: #23232e;
/* Defina a cor da linha */
border-top-left-radius: 15px;
border-top-right-radius: 15px
}
.form-button {
display: flex;
justify-content: center;
flex-direction: row;
padding: 20px;
}
.btn.btn-primary.btn-lg {
border-radius: 20px;
width: 273px;
background-color: #005573;
border-color: #005573;
transition: background-color 0.3s ease;
}
.btn.btn-primary.btn-lg:hover {
background-color: #00aa9b;
border-color: #005573;
}
.btn.btn-primary.btn-lg:focus {
background-color: #005573;
border-color: #005573;
}
textarea {
width: 101%;
padding: 10px;
box-sizing: border-box;
}
.form-text-area {
width: 70vh;
box-sizing: border-box;
display: block;
max-width: 88vh;
line-height: 1.5;
padding: 15px 15px 15px;
border-radius: 3px;
font-size: 15px;
transition: box-shadow 0.5s ease;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3)
}
.form-text-area:focus-visible {
outline: 1px solid gray;
}
#header-field {
background: var(--secondary-blue);
position: absolute;
top: 0;
left: 0;
text-align: center;
border-bottom-right-radius: 10px;
color: white;
font-weight: 700;
width: 400px;
padding: 15px;
font-size: 30px;
}
|