body {
    background: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.login-box {
    width: 420px;
    margin: 30px auto;
    background: #fff;
    border: 2px solid var(--gv-divider);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 32px 32px 24px 32px;
    text-align: center;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.logo-bold {
    font-weight: bold;
    color: var(--gv-text-header);
    font-size: 1.4rem;
    line-height: 1.1;
    text-align: right;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 38px;
    width: auto;
}

.login-title {
    color: var(--gv-green-light);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.2em;
    font-family: inherit;
}

.login-label {
    display: block;
    text-align: left;
    color: var(--gv-text-header);
    font-size: 1rem;
    margin-bottom: 0.2em;
    margin-top: 1em;
}

.login-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--gv-text-header);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0.5em;
    background: #fff;
    color: var(--gv-text-header);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.login-input:focus {
    border-color: var(--gv-green-light);
}

.login-button {
    width: 100%;
    background: var(--gv-green-light);
    color: #fff;
    border: 2px solid var(--gv-text-header);
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1.2em;
    cursor: pointer;
    transition: background 0.2s;
}

.login-button:hover {
    background: var(--gv-green-dark);
}

.login-error {
    color: var(--gv-danger);
    background-color: var(--gv-danger-light);
    border: 1px solid var(--gv-danger);
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

/* Navigation Links */
.navigation-links {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
}

.back-to-home,
.history-link {
    color: var(--gv-green-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.back-to-home:hover,
.history-link:hover {
    color: var(--gv-green-dark);
    text-decoration: underline;
}

.back-to-home::before {
    content: "← ";
    margin-right: 5px;
}

.history-link::before {
    content: "📋 ";
    margin-right: 5px;
}

/* DNS Form */
.btn-dns {
    background-color: var(--gv-green-light);
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.btn-dns:hover {
    background-color: var(--gv-green-dark);
}

.dns-form-container {
    text-align: left;
    max-width: 400px;
    padding: 24px;
    border: none;
    border-radius: 0;
    background: none;
    margin: 0 auto;
}

.dns-form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    text-align: left;
    color: var(--gv-text-header);
    font-family: inherit;
}

.dns-form-container input,
.dns-form-container select,
.dns-form-container textarea {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 8px;
    box-sizing: border-box;
    text-align: left;
}

.dns-form-container button[type="submit"] {
    width: 100%;
    background: var(--gv-green-light);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

/* TODO - move this styling to dns specific app folder*/
/* duplication validation dns -domain_name */
/* AJAX Error Messages */
.ajax-error {
    color: var(--gv-danger);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-errors li {
    color: var(--gv-danger);
    font-weight: bold;
    margin-bottom: 20px;
}

/* das Auge-Icon im Passwortfeld */
#togglePassword {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 32px;
    padding: 0;
}

#togglePassword i {
    color: var(--gv-green-light);
    font-size: 1.1em;
    transition: color 0.2s;
    font-weight: 350;
    opacity: 0.85;
}

#togglePassword:hover i {
    color: var(--gv-green-dark);
    opacity: 1;
}
