﻿body {
}

.form-group.col-md-6 {
    padding: 2px;
}

.sidebar {
    background-color: #ececed;
    border-radius: 10px;
    overflow: hidden;
}

:root {
    --primary: #337ab7;
    --secondary: #d9534f;
    --white: #fff;
    --gray: #9b9b9b;
}

.text-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 1.2rem;
}

    .text-input > input {
        background: transparent;
        color: inherit;
        border: none;
        border-bottom: 1px solid currentColor;
        margin-bottom: 1rem;
        padding: 1rem .5rem;
        outline: transparent;
        font-family: inherit;
        font-size: 1.2rem;
    }

        .text-input > input + label {
            margin-left: .5rem;
            transform: translateY(0);
            transition: transform .2s;
            pointer-events: none;
            color: rgba(255, 255, 255, .5);
        }

        .text-input > input:placeholder-shown + label {
            transform: translateY(-3rem);
        }

        .text-input > input:focus + label {
            transform: translateY(0);
        }

/* Add your existing CSS styles here */

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    background: #FFF;
    transition: border-color 0.2s;
    padding: 10px 20px;
    color: #838383;
}

    .form__field:focus {
        background-color: whitesmoke;
        outline: 2px solid black;
    }

    .form__field::placeholder {
        color: #999;
    }

    .form__field:placeholder-shown ~ .form__label {
        /*        font-size: 1.3rem;
        cursor: text;
        top: 20px;*/
    }

.validation-error {
    border-bottom: 2px solid red;
}

/* Reset input */
.form__field:required, .form__field:invalid {
    box-shadow: none;
}

.sticky-nav {
    position: sticky;
/*    top: 83px;*/
    background-color: #1F386B;
    padding: 15px 10px;
/*    z-index: 1000;*/
    color: #000;
    border-radius: 20px 20px 0 0;
}

    .sticky-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

    .sticky-nav li {
        margin-right: 20px;
    }

    .sticky-nav a {
        text-decoration: none;
        color: #FFF;
        font-weight: bold;
        transition: color 0.3s ease; /* Add a smooth transition for color changes */
    }

/*        .sticky-nav a:hover {
            text-decoration: underline;
            color: #fff;
            background-color: #d43f3a;
            padding: 7px 7px;
            border-radius: 12px;
            transition: 0.2s linear;
        }*/

.submit-btn {
    background: #1F386B;
    color: white;
    font-weight: 600;
}

.training-section-title {
    background-color: #FFF;
    padding: 10px;
    margin-top: 0;
    border-radius: 10px;
}