﻿/*<style >
body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.company {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    color: #e65100;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.btn {
    width: 100%;
    background-color: #e65100;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
}

.sign-in {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

    .sign-in a {
        color: #e65100;
        text-decoration: none;
    }

@media (max-width: 600px) {
    .container {
        margin: 20px auto;
        padding: 20px;
    }
}

.password-wrapper {
    position: relative;
}

    .password-wrapper span {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

</style >
<style >
body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 400px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.company {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    color: #e65100;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.btn {
    width: 100%;
    background-color: #e65100;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
}

.sign-in {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

    .sign-in a {
        color: #e65100;
        text-decoration: none;
    }

.password-wrapper {
    position: relative;
}

    .password-wrapper span {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

@media (max-width: 600px) {
    .container {
        margin: 20px auto;
        padding: 20px;
    }
}

</style >*/

:root {
    /* 🌑 Backgrounds */
    /*--bg-dark: #076363;*/ /* Elegant deep blue-green base */
    --bg-dark: #076363; /* Elegant deep blue-green base */
    --bg-card: #203A43; /* Muted teal-gray for contrast */
    /* 💠 Accents */
    --accent-primary: #00BCD4; /* Base cyan (main highlight) */
    --accent-secondary: #0097A7; /* Deep teal for depth */
    --accent-hover: #26C6DA; /* Bright shimmer for hover */
    /* ✨ Text Colors */
    --text-primary: #E0F7FA; /* Soft white-blue (main text) */
    --text-secondary: #B0BEC5; /* Subtle silver for subtext */
    /* 🌈 Optional shadows/borders */
    --shadow-color: rgba(0, 188, 212, 0.25);
    --border-light: rgba(255, 255, 255, 0.08);
    --logobg1-light: #e0eff1;
    --logobg2-light: #bcd8dc;
}


<style >
body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.company {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    color: #00B8D4; /* MoneyHub color */
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #00B8D4;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 184, 212, 0.3);
}

.btn {
    width: 100%;
    background-color: var(--bg-dark);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0097A7;
    }

.sign-in {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

    .sign-in a {
        color: #00B8D4;
        text-decoration: none;
    }

        .sign-in a:hover {
            text-decoration: underline;
        }
.company-logo {
    max-width: 200px; /* size adjust here */
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); /* subtle depth effect */
}
.password-wrapper {
    position: relative;
}

    .password-wrapper span {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #00B8D4;
    }

@media (max-width: 600px) {
    .container {
        margin: 20px auto;
        padding: 20px;
    }
}

</style >
