Spaces:
Sleeping
Sleeping
File size: 2,324 Bytes
f6abf39 | 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 | /* static/css/styles.css
body {
font-family: Arial, sans-serif;
margin: 20px;
}
form {
margin-top: 20px;
}
input {
display: block;
margin: 10px 0;
padding: 10px;
width: 100%;
max-width: 300px;
}
button {
padding: 10px 20px;
background-color: #28a745;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #218838;
} */
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
.blur-bg-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
backdrop-filter: blur(10px);
z-index: 1;
}
.form-popup {
position: relative;
z-index: 2;
width: 100%;
max-width: 400px;
background: #fff;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 50px auto;
}
.form-box h2 {
margin-bottom: 20px;
color: #333;
}
.form-details {
text-align: center;
margin-bottom: 20px;
}
.form-content .input-field {
position: relative;
margin-bottom: 20px;
}
.input-field input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
}
.input-field label {
position: absolute;
top: 50%;
left: 10px;
transform: translateY(-50%);
pointer-events: none;
transition: 0.2s;
color: #999;
}
.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label {
top: -10px;
left: 10px;
color: #333;
font-size: 12px;
}
.button {
width: 100%;
padding: 10px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.bottom-link {
text-align: center;
margin-top: 10px;
}
.bottom-link a {
color: #007bff;
text-decoration: none;
}
.bottom-link a:hover {
text-decoration: underline;
}
.policy-text {
margin-bottom: 20px;
font-size: 14px;
color: #555;
}
.policy-text input {
margin-right: 5px;
}
.close-btn {
position: absolute;
top: 15px;
right: 15px;
cursor: pointer;
font-size: 24px;
color: #333;
}
|