body {
    margin: 0 !important;
    font-family: Arial, sans-serif;
    background-color: #0db0f3 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}
.path-login #page {
    background-color: #0db0f3 !important;
    display: flex;
    flex: 1 0 auto;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: center;
}
header {
    padding: 10px 20px;
    background: white;
}
header img {
    height: 40px;
}
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 5%;
}
.login-container {
    max-width: 520px;
    width: 100%;
    color: black;
}
.welcome-text {
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.welcome-subtext {
    font-weight: normal;
    font-size: 1rem;
    margin-bottom: 40px;
}
label {
    font-weight: 600;
    font-size: 0.9rem;
}
.login-container input[type="password"] {
    width: 100%;
    border: none;
    border-bottom: 2px solid black;
    padding: 8px 12px;
    font-size: 1rem;
    margin: 10px 0 30px 0;
    outline: none;
    background: transparent;
}
.login-container input[type="text"] {
    width: 100%;
    border: none;
    border-bottom: 2px solid black;
    padding: 8px 12px;
    font-size: 1rem;
    margin: 10px 0 30px 0;
    outline: none;
    background: transparent;
}
.login-container input[type="submit"] {
    width: 100%;
    background-color: #f0f0f0;
    color: #666;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    margin-bottom: 30px;
}
.register-text {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
}
.register-btn {
    width: 100%;
    background-color: #f26a3e;
    color: black;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    display: block;
    text-decoration: none;
}
.errormsg{
    color: red;
}

.mform span.error{
    background-color: #0db0f3 !important;
}

.terms-and-conditions, .terms-and-conditions:hover, .dark-blue-link, .dark-blue-link:hover{
    color: blue;
    font-weight: bold;
    text-decoration: underline;
}