From 4319e216797242f8b0a1383d86d2fbf55eb3a32b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=97=D0=BE=D1=82=D0=BA=D0=B8=D0=BD=20=D0=92=D0=BB=D0=B0?= =?UTF-8?q?=D0=B4=D0=B8=D0=BC=D0=B8=D1=80?= Date: Mon, 5 Aug 2024 10:56:23 +0000 Subject: [PATCH] Upload files to "assets/reg.css" --- assets/reg.css/reg.css | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 assets/reg.css/reg.css diff --git a/assets/reg.css/reg.css b/assets/reg.css/reg.css new file mode 100644 index 0000000..d9076d6 --- /dev/null +++ b/assets/reg.css/reg.css @@ -0,0 +1,54 @@ +body { + font-family: Arial, sans-serif; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; + background-color: #e5e5e5; +} + +.form-container { + width: 100%; + max-width: 400px; + background-color: white; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + display: flex; + flex-direction: column; + border-radius: 8px; + padding: 40px; + text-align: center; +} + +h1 { + margin-bottom: 20px; + color: #2F4F4F; +} + +input { + width: 100%; + background: #f7f7f7; + font-size: 16px; + padding: 10px; + border: 1px solid #ddd; + border-radius: 20px; + margin-bottom: 15px; + outline: none; +} + +button { + width: 100%; + padding: 15px; + border: none; + background-color: #0088cc; + color: white; + border-radius: 20px; + cursor: pointer; + outline: none; + font-size: 16px; + font-weight: bold; +} + +button:hover { + background-color: #007bb5; +}