/* Resend Verification Page Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #9b8d52, #2e3c55); /* Gleicher Hintergrund wie im Login */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #e0d9ae; /* Textfarbe angepasst an Login */
}

header img#logo {
    display: block;
    margin: 0 auto;
    width: 100px;
}

.resend-container {
    background-color: #fff; /* Heller Hintergrund für den Container */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Gleiche Box-Schatten wie im Login */
    width: 400px;
    text-align: center;
}

h2 {
    color: #2e3c55; /* Dunkelblauer Header-Text */
    margin-bottom: 20px;
}

/* Eingabefeld-Styling */
.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da; /* Gleicher Rahmen wie im Login */
    border-radius: 5px;
    font-size: 1em;
    background-color: #fff; /* Weißer Hintergrund für Eingabefeld */
    color: #2e3c55; /* Dunkelblauer Text im Eingabefeld */
}

.input-group input::placeholder {
    color: #bbb; /* Platzhalter-Farbe */
}

/* Button-Styling */
.btn {
    width: 100%;
    padding: 10px;
    background-color: #9b8d52; /* Goldener Button */
    color: #fff; /* Weißer Text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2e3c55; /* Dunkelblauer Hover-Effekt */
}

/* Link unter dem Formular */
p {
    text-align: center;
    margin-top: 20px;
    color: #2e3c55;
}

p a {
    color: #9b8d52; /* Link in Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

p a:hover {
    color: #2e3c55; /* Dunkelblauer Hover-Effekt für Links */
    text-decoration: underline;
}

/* Header */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #2e3c55;
    color: #e0d9ae;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
}

.header-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 1000;
}

.header-right a {
    color: #e0d9ae;
    font-size: 24px;
    text-decoration: none;
}

.header-right a:hover {
    color: #9b8d52;
}

/* Footer */
#footer {
    background-color: #2e3c55;
    color: #e0d9ae;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#footer .copyright h2 {
    text-align: center;
    font-size: 14px;
    color: #e0d9ae;
    border-top: 1px solid #e0d9ae;
    padding: 20px 0;
    margin-top: 20px;
}
