diff --git a/css/core-style.css b/css/core-style.css index 90dc8f7..dce0194 100644 --- a/css/core-style.css +++ b/css/core-style.css @@ -1749,6 +1749,96 @@ img { .contact-area .contact-info .contact-address p:last-child a:hover { color: #0315ff; } + + .login-container { + display: flex; + justify-content: center; + align-items: center; + width: 100%; + height: 100vh; + } + + .login-box { + background-color: white; + padding: 2rem; + border-radius: 8px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + max-width: 400px; + width: 100%; + } + + h2 { + text-align: center; + margin-bottom: 1.5rem; + } + + .input-group { + margin-bottom: 1rem; + } + + label { + display: block; + margin-bottom: 0.5rem; + color: #333; + } + + input { + width: 100%; + padding: 10px; + border: 1px solid #ccc; + border-radius: 4px; + font-size: 1rem; + } + + input:focus { + border-color: #5fbae9; + outline: none; + } + + .forgot-password { + text-align: right; + margin-top: 0.5rem; + } + + .forgot-password a { + color: #5fbae9; + text-decoration: none; + } + + .forgot-password a:hover { + text-decoration: underline; + } + + .btn { + width: 100%; + padding: 10px; + background-color: #5fbae9; + border: none; + color: white; + font-size: 1rem; + cursor: pointer; + border-radius: 4px; + margin-top: 1rem; + } + + .btn:hover { + background-color: #4aa4d8; + } + + .signup-text { + text-align: center; + margin-top: 1rem; + } + + .signup-text a { + color: #5fbae9; + text-decoration: none; + } + + .signup-text a:hover { + text-decoration: underline; + } + /* ##### The End ##### */ /*# sourceMappingURL=core-style.css.map */ diff --git a/login.html b/login.html new file mode 100644 index 0000000..79140ee --- /dev/null +++ b/login.html @@ -0,0 +1,46 @@ + + +
+ + + +