﻿
:root {
    /* Other Settings */
    --nav-top: 60px; /* Top Nav Height */
    --color-1: #213555; /* Darkest */
    --color-2: #213555; /* Lighter */
    --color-3: #4F709C; /* Lighter */
    --color-4: #D8C4B6; /* Lighter */
    --color-5: #F5EFE7; /* Lightest */
}

/* Begin Fonts */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin/montserrat-v25-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/montserrat-v25-latin/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/montserrat-v25-latin/montserrat-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/montserrat-v25-latin/montserrat-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/montserrat-v25-latin/montserrat-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/montserrat-v25-latin/montserrat-v25-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* End Fonts */

h1 {
    font-family: 'Montserrat', serif;
    color: #555;
}

.form-control, .form-lbl {
    font-family: 'Montserrat', serif;
    font-size: 1rem;
}

html, body {
    margin: 0;
    background-color: #eee;
}

.validation-message {
    color: #dc3545;
    font-family: 'Montserrat', serif;
    font-size: 15px;
    float: right;
}

.card {
    margin-top: 80px !important;
}

/* Override bootstrap defaults */
.form-control:focus {
    border-color: #777;
    box-shadow: none !important;
    outline: none !important;
}

.form-control {
    border-radius: 0px;
}

/* Remove the default outline */
.btn {
    outline: none !important;
    box-shadow: none !important;
}

/* Signin Form */
.signin-header {
    font-family: 'Montserrat', serif;
    line-height: 1.6;
    font-size: 30px;
    font-weight: 400;
    color: #555;
    border-width: 0px !important;
}

.signin-btn {
    font-size: 20px !important;
    border-radius: 10px !important;
    height: 50px;
    background-color: var(--color-3) !important;
    border-color: var(--color-3) !important;
}

.signin-btn:hover {
    background-color: var(--color-1) !important;
}

.signin-control {
    font-size: 16px !important;
    border-radius: 10px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    height: 50px !important;
    border-color: var(--color-3);
}

.signin-control:focus {
    border-color: var(--color-3) !important;
}

.signin-form {
    border-radius: 20px !important;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border: solid;
    border-color: var(--color-3);
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    opacity: 1;
    background-color: var(--color-3);
}

.switchboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333;
    background-size: cover;
}

.switchboard-logo {
    width: 300px; /* Adjust the logo size */
    margin-bottom: 30px;
}

.switchboard-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 20px;
    align-items: center;
}

.switchboard-button {
    width: 400px;
    height: 150px;
    font-size: 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid; /* Border thickness */
    border-color: #bbb;
    color: #fff;
    background-color: transparent;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove default underline from links */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', serif;
}

.switchboard-button:hover {
    color: #FFF !important;
    background-color: #555;
}

/* Sign In */

:root {
    --primary-color: var(--color-1);
    --secondary-color: var(--color-2);
}

body {
    min-height: 100vh;
    background: linear-gradient(-45deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    background-size: 400% 400%;
    animation: gradient 20s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: transparent;
    border-bottom: none;
    padding-bottom: 0;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 0.50rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #999;
        box-shadow: 0 0 0 0.2rem rgba(78, 84, 200, 0.1);
    }

.btn-primary-signon {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-primary-signon:hover {
    color: #fff;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    border-radius: 5px;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 5px;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:active, .btn-outline-primary.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.social-login {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e1e1e1;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #666;
}

    .social-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #666;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e1e1e1;
    }

    .divider span {
        padding: 0 1rem;
    }

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.floating-shapes div {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s linear infinite;
}

    .floating-shapes div:nth-child(1) {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .floating-shapes div:nth-child(2) {
        top: 60%;
        right: 20%;
        animation-delay: 2s;
    }

    .floating-shapes div:nth-child(3) {
        bottom: 20%;
        left: 30%;
        animation-delay: 4s;
    }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}