/* Reset and Base Styles */
html {
    margin: 0;
    padding: 0;
    background-color: #f0f4f9;
    color: #000;
    font: 12px Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f4f9;
}

/* Layout Components */
#loginbox {
    display: flex;
    width: 580px;
    height: 320px;
    margin-top: 18vh;
    border-radius: 28px;
    padding: 24px 24px 24px 18px;
    background: #fff;
}

#leftpane {
    width: 180px;
    padding-top: 5px;
    padding-left: 15px;
}

#head {
    width: 100%;
    height: 110px;
}

#main {
    height: 175px;
}

#mainbot {
    width: 405px;
    height: 80px;
    text-align: right;
}

#foot {
    width: 415px;
}

/* Headers */
h1 {
    margin: 0;
    color: #C7D33E !important;
    font: 31px Arial, Helvetica, sans-serif;
}

h2 {
    margin: 0 0 10px 0;
    color: #000;
    font: 19px Arial, Helvetica, sans-serif;
}

/* Form Elements */
#UserName,
#UserPass {
    width: 190px;
    margin-bottom: 2px;
    border: 0;
    border-bottom: 1px solid #000;
    padding: 8px 4px;
    color: #235973;
    font: bold 12px Verdana, Arial, Helvetica, sans-serif;
}

input[type=submit] {
    height: 34px;
    margin-left: 0;
    border: 0;
    border-radius: 18px;
    padding: 0 24px;
    background: #4599B3;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

<% IF Application("Verband") = "BBU" %>

h1 {
	color: grey !important;
}

input[type=submit] {
    background: rgb(242, 149, 0);
}
<% END IF %>

input[type=submit]:hover {
    background-image: linear-gradient(rgb(0 0 0/20%) 0 0);
}

textarea:focus,
input:focus {
    outline: none;
}

/* Links */
a {
    color: #060;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.anmelden {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

a.anmelden:hover {
    text-decoration: underline;
}

#foot a {
    color: #000;
}

/* Validation Elements */
#ctl01,
#ctl02 {
    color: #f00;
}

.msg {
    color: #f00;
    font-size: 13px;
}