diff --git a/account.php b/account.php
new file mode 100644
index 0000000..6587a04
--- /dev/null
+++ b/account.php
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/assets/css/login.css b/assets/css/login.css
index 8a58365..6b609ba 100644
--- a/assets/css/login.css
+++ b/assets/css/login.css
@@ -4,15 +4,15 @@
:root{
/* Dunkelblauer Background, helle Cards, blaue Akzente */
- --gh-bg: #0f172a;
- --gh-card: #ffffff;
- --gh-text: #0f172a;
- --gh-muted: #475569;
- --gh-border: #e5e7eb;
+ --gh-bg: #151923;
+ --gh-card: #1f2937;
+ --gh-text: #ffffff;
+ --gh-muted: #ffffff;
+ --gh-border: #5e6075;
- --gh-primary: #2563eb;
+ --gh-primary: #274a97;
--gh-primary-2: #1d4ed8;
- --gh-link: #2563eb;
+ --gh-link: #3c5fb6;
--gh-danger: #d92d20;
--gh-shadow: 0 14px 34px rgba(2, 6, 23, 0.35);
@@ -22,24 +22,29 @@
/* Wir stylen nur innerhalb des Login-Bereichs, damit global nichts kaputtgeht */
.auth{
- min-height: calc(100svh - 56px);
+ display: grid;
+ place-items: center;
+ min-height: 81.5svh;
padding: 34px 18px 60px;
background: var(--gh-bg);
}
.auth__grid{
+ display: grid;
+ grid-template-columns: 1fr; /* statt 1.06fr 0.94fr */
+ justify-items: center;
+ gap: 22px;
+ min-width: 1080px;
max-width: 1080px;
margin: 0 auto;
- display: grid;
- grid-template-columns: 1.06fr 0.94fr;
- gap: 22px;
- align-items: start;
+ align-items: center; /* optional, aber passend zur Zentrierung */
}
.auth__card,
.auth__sideCard{
+ width: min(520px, 100%);
background: var(--gh-card);
- border: 1px solid var(--gh-border);
+ /* border: 1px solid var(--gh-border); */
border-radius: var(--gh-radius);
box-shadow: var(--gh-shadow);
}
@@ -109,7 +114,7 @@
padding: 12px 12px;
border: 1px solid var(--gh-border);
border-radius: 12px;
- background: #ffffff;
+ background: #1e2537;
color: var(--gh-text);
outline: none;
transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
@@ -130,7 +135,7 @@
padding: 12px 14px;
border: 0;
border-radius: 12px;
- background: linear-gradient(180deg, var(--gh-primary), var(--gh-primary-2));
+ background: var(--gh-primary);
color: #ffffff;
font-weight: 750;
letter-spacing: 0.2px;
@@ -207,6 +212,10 @@
.auth__logo{
width: 120px;
}
+
+ .auth__sideCard{
+ display: none;
+ }
}
@media (max-width: 520px){
diff --git a/assets/images/logoText.png b/assets/images/logoText.png
index 2179032..58b8716 100644
Binary files a/assets/images/logoText.png and b/assets/images/logoText.png differ
diff --git a/header.php b/header.php
index 249577f..a273070 100644
--- a/header.php
+++ b/header.php
@@ -39,7 +39,7 @@
-
+
diff --git a/login.php b/login.php
index eb91a5d..5ca62c0 100644
--- a/login.php
+++ b/login.php
@@ -71,7 +71,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
mysqli_stmt_close($stmt);
mysqli_close($conn);
- header("Location: index.php");
+ header("Location: account.php");
exit;
}
@@ -90,7 +90,6 @@ include 'header.php';
@@ -119,7 +118,6 @@ include 'header.php';
diff --git a/register.php b/register.php
index 12abddc..a66daf0 100644
--- a/register.php
+++ b/register.php
@@ -118,7 +118,6 @@ include 'header.php';
@@ -134,7 +133,7 @@ include 'header.php';