﻿/* OLDER CODE BLOCK */
/* Smaller input for Activate page */
.input-small {
    width: 300px !important;
    padding: 0px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 16px;
}
/* --- BUTTON STYLES --- */
/*.primary-btn {
    background-color: #c11111;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 14px;
    width: 200px !important;
}

    .primary-btn:hover {
        background-color: #a30f0f;
    }*/

/* --- ERROR LABEL --- */
/*.error-label {
    color: red;
    margin-bottom: 20px;
    font-size: 13px;
}*/

/* FROM DEFAULT.ASPX */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    /*background-color: white;*/
    /*            background: url('images/background13.jpg') no-repeat center center fixed;
*/ display: flex;
    flex-direction: column;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-top: 20px;
    margin-bottom: 10px;
}

    .logo img {
        width: 110px;
        height: auto;
    }

.title {
    font-weight: normal;
    font-size: 13px;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
}

input[type="text"], input[type="password"] {
    width: 70%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="password"] {
    margin-bottom: 20px;
}
/* Modern red button */
.primary-btn {
    background-color: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display:inline-block;
    /*margin-top: 20px;*/
    margin-bottom: 15px;
    transition: all 0.2s ease;
    width: auto;
    border: 1px solid #1a73e8;
}

.primary-btn:hover {
    background-color: #1558b0;
    /*transform: translateY(-1px);*/
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: #1558b0;
}

.button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.error-label {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 10px;
    display: block;
}

.footer {
    text-align: center;
    padding: 20px 0;
}

.footer-text {
    font-size: 12px;
    color: #888;
}

.footer-logo img {
    width: 70px;
    height: auto;
    margin-top: 5px;
}

.link-no-underline {
    font-size: 13px;
    color: #4b5563;
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .link-no-underline:hover {
        /*color: #0073e6;*/ /* Or your brand’s primary link color */
        text-decoration: underline;
    }

.copyright-text {
    font-size: 12px;
    /*color: #6b7280;*/ /* A soft gray tone */
    color: #4b5563;
    display: block;
    text-align: center;
    margin-top: 34px;
    margin-bottom: 14px;
}

.menu-links {
    text-align: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-links {
    text-align: center;
    margin: 12px 12px 12px 12px;
    font-size: 13px;
}

.footer-link {
    /*color: #000;*/
    color: #4b5563;
    text-decoration: none;
    margin: 12px 12px 0;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        /*color: #0073e6;*/
        text-decoration: underline;
    }

.divider-menu-links {
    color: #999;
    margin: 0 6px;
}

.divider-footer-links {
    color: #999;
    margin: 0 0px;
}
