{% extends "base.html" %} {% block title %}Admin Login - CREATESONLINE{% endblock %} {% block extra_style %} h1 { font-size: 2em; color: #000000; margin-bottom: 10px; text-align: center; font-weight: 300; letter-spacing: -0.5px; } h1::after { content: ''; display: block; width: 40px; height: 2px; background: #000000; margin: 15px auto 0; } .subtitle { text-align: center; color: #666666; font-size: 0.95em; margin-bottom: 45px; font-weight: 300; line-height: 1.6; } .form-group { margin-bottom: 30px; position: relative; } label { display: block; color: #000000; font-size: 0.85em; margin-bottom: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } input[type="text"], input[type="password"] { width: 100%; padding: 15px 18px; border: 2px solid #e0e0e0; background: #ffffff; font-size: 1em; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); font-family: inherit; color: #000000; } input[type="text"]:focus, input[type="password"]:focus { outline: none; background: #fafafa; border-color: #000000; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } button { width: 100%; padding: 18px; background: #000000; color: white; border: 2px solid #000000; font-size: 1em; font-weight: 600; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); text-transform: uppercase; letter-spacing: 1.5px; font-family: inherit; margin-top: 10px; position: relative; overflow: hidden; } button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; } button:hover::before { left: 100%; } button:hover { background: #ffffff; color: #000000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); } button:active { transform: translateY(0); } .back-link { text-align: center; margin-top: 35px; padding-top: 30px; border-top: 1px solid #e0e0e0; } .back-link a { color: #666666; text-decoration: none; font-size: 0.9em; transition: all 0.3s ease; font-weight: 300; } .back-link a:hover { color: #000000; } .container { max-width: 480px; padding: 60px 50px; } @media (max-width: 480px) { .container { padding: 40px 30px; } h1 { font-size: 1.6em; } } {% endblock %} {% block content %}
Enter your credentials to access the admin panel
{% endblock %}