﻿body {
    font-family: Arial, sans-serif;
    background-image: linear-gradient(to bottom,#369,#69c);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: white;
    padding: 30px 30px 0px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 533px;
    max-width: 650px;
}

.logo {
    text-align: left;
    margin-bottom: 20px;
}

    .logo img {
        width: 150px;
    }

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e0e0e0;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Or your preferred button color */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button-link:hover {
    background-color: #0056b3; /* Darker shade for hover */
    text-decoration: none;
    color: white;
}

.button-link:active {
    background-color: #004085; /* Even darker for active state */
}

::-ms-reveal {
    display: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fff !important;
    opacity: 1 !important;
}

.companyNameHolder {
    display: inline-block;
    max-width: 300rem;
    color: #000000;
    font-weight: 550;
    font-size: 1.85rem;
}

.loginPanel {
    height: 60px;
    background: #d2dcfa;
    width: 470px;
    padding: .95em .5em .95em .95em;
    margin-bottom: .5rem;
    cursor: pointer;
    text-align: left;
    &:hover
    {
        background: #e6e6e6;
    }
}

.linkHolder {
    line-height: 1.1;
    height: 0.2em;
    color: #56585e;
    font-weight: 400;
}

.loginPrompt {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 550;
}

.logoHolder {
    max-width: 100rem;
    text-align: left;
    margin-bottom: 5rem;
}

.footerTxtHolder {
    width: auto;
    padding-bottom: 0px;
    margin-top: 2rem;
    font-weight: 550;
    display: flex;
    justify-content: space-between; /* Or space-around */
}