.h3 {
    font-family: Sora;
    font-size: 32px;
    font-weight: 600;
}

.txt-center {
    text-align: center;
}

/*Fonts*/

@font-face {
    font-family: LatoLight;
    src: url(../fonts/LatoLatin-Light.ttf);
}

@font-face {
    font-family: LatoRegular;
    src: url(../fonts/LatoLatin-Regular.ttf);
}

@font-face {
    font-family: LatoMedium;
    src: url(../fonts/LatoLatin-Medium.ttf);
}

@font-face {
    font-family: LatoSemiBold;
    src: url(../fonts/LatoLatin-SemiBold.ttf);
}

/*Scroll*/

::-webkit-scrollbar {
    width: 5px;
    width: 5px;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: white;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #A9A9A9;
    border-radius: 5px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

/*Login*/

.main_cont {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

    .main_cont .left_cont {
        grid-column-start: 1;
        grid-column-end: 5;
        width: 100%;
        height: 100vh;
        position: relative;
        background-image: url(../img/photomain.png);
        background-size: cover;
    }

        .main_cont .left_cont .logo_nrg {
            position: absolute;
            left: 25px;
            top: 25px;
            display: none;
        }

    .main_cont .right_cont {
        grid-column-start: 5;
        grid-column-end: 11;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

        .main_cont .right_cont .login_cont {
            grid-column-start: 2;
            grid-column-end: 6;
            max-width: 600px;
            justify-content: center;
            align-content: center;
            align-self: center;
            justify-self: center;
            padding: 90px 115px;
            border-left: 3px solid #2462BB;
        }

            .main_cont .right_cont .login_cont .logo_cont {
                display: flex;
                flex-direction: column;
                row-gap: 10px;
                justify-content: center;
                align-items: center;
                padding-bottom: 40px;
            }

body .wrapper .cont_right .row1 .logo {
    width: 240px;
    height: 80px;
    grid-row-start: 1;
}

.main_cont .right_cont .register_cont {
    grid-column-start: 2;
    grid-column-end: 6;
    max-width: 600px;
    justify-content: center;
    align-content: center;
    align-self: center;
    justify-self: center;
    padding: 10px 115px;
    border-left: 3px solid #2462BB;
}

    .main_cont .right_cont .register_cont .heading {
        color: #d9d9d9;
        font-family: "Kanit";
        font-size: 42px;
        font-weight: 500;
        display: block;
        margin: auto;
        padding-bottom: 20px;
        text-align: center;
    }

    .main_cont .right_cont .register_cont .toggle_cont {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto;
        padding-bottom: 25px;
    }

        .main_cont .right_cont .register_cont .toggle_cont .toggle_option {
            justify-self: center;
            font-size: 20px;
            font-family: "Kanit";
            font-weight: 300;
            color: #D9D9D9;
            padding: 20px 0;
            border-bottom: 1px solid #D9D9D9;
            width: 100%;
            text-align: center;
        }

            .main_cont .right_cont .register_cont .toggle_cont .toggle_option:hover {
                font-weight: 300;
                cursor: pointer;
                border-bottom: 3px solid #D9D9D9;
            }

        .main_cont .right_cont .register_cont .toggle_cont .toggle_active {
            color: #2462BB;
            border-bottom: 3px solid #2462BB;
            font-weight: 500;
        }

            .main_cont .right_cont .register_cont .toggle_cont .toggle_active:hover {
                border-bottom: 3px solid #2462BB;
            }

.main_cont .disc {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-family: "Kanit";
    font-size: 16px;
    font-weight: 300;
    color: #a6a6a6;
}

    .main_cont .disc .txt_bold {
        font-weight: 500;
    }

.input_wrapper {
    justify-content: center;
    display: grid;
    padding-bottom: 40px;
}

    .input_wrapper .input_cont {
        justify-self: center;
        align-self: center;
        padding-bottom: 15px;
    }

        .input_wrapper .input_cont:last-child {
            padding: 0;
        }

        .input_wrapper .input_cont label {
            display: block;
            padding-bottom: 5px;
            font-family: "Kanit";
            font-weight: 300;
            font-size: 16px;
            line-height: 24px;
            color: #a6a6a6;
            position: unset;
        }

        .input_wrapper .input_cont:last-child {
            padding: 0;
        }

        .input_wrapper .input_cont input {
            width: 350px;
            height: 40px;
            background-color: white;
            border: 1px solid #d9d9d9;
            font-family: "Kanit";
            font-weight: 300;
            font-size: 16px;
            line-height: 24px;
            color: #133463;
            padding: 0 10px;
            box-sizing: border-box;
        }

            .input_wrapper .input_cont input:focus {
                border: 1px solid #2462BB;
                outline: none;
            }

            .input_wrapper .input_cont input::-moz-placeholder {
                font-size: 16px;
                font-weight: 300;
                font-style: italic;
                opacity: 0.5;
            }

            .input_wrapper .input_cont input::placeholder {
                font-size: 16px;
                font-weight: 300;
                font-style: italic;
                opacity: 0.5;
            }

            .input_wrapper .input_cont input:-webkit-autofill, .main_cont .right_cont .login_cont .input_wrapper .input_cont input:-webkit-autofill:hover, .main_cont .right_cont .login_cont .input_wrapper .input_cont input:-webkit-autofill:focus, .main_cont .right_cont .login_cont .input_wrapper .input_cont input:-webkit-autofill:active {
                -webkit-box-shadow: 0 0 0px 1000px white inset;
                -webkit-text-fill-color: #133463 !important;
                font-family: "Kanit";
                font-weight: 300;
            }

    .input_wrapper .reg_dd_cont {
        padding-bottom: 15px;
        z-index: 1;
    }

        .input_wrapper .reg_dd_cont:last-child {
            padding: 0;
        }

        .input_wrapper .reg_dd_cont .dd_label {
            display: block;
            padding-bottom: 5px;
            font-family: "Kanit";
            font-weight: 300;
            font-size: 16px;
            line-height: 24px;
            color: #a6a6a6;
        }

        .input_wrapper .reg_dd_cont .reg_dd {
            width: 350px;
            height: 40px;
            cursor: pointer;
            box-sizing: border-box;
        }

            .input_wrapper .reg_dd_cont .reg_dd .menu_label {
                display: grid;
                align-content: center;
                grid-template-rows: auto;
                height: 100%;
                background-color: white;
                border: 1px solid #d9d9d9;
                font-family: "Kanit";
                font-weight: 300;
                font-size: 16px;
                line-height: 24px;
                color: #133463;
                padding: 0 10px;
                box-sizing: border-box;
            }

                .input_wrapper .reg_dd_cont .reg_dd .menu_label #touch {
                    opacity: 0;
                    height: 0;
                }

                    .input_wrapper .reg_dd_cont .reg_dd .menu_label #touch:checked ~ .dropdown_arrow {
                        transform: rotate(180deg);
                    }

                .input_wrapper .reg_dd_cont .reg_dd .menu_label span {
                    background: white;
                    color: #133463;
                    font-family: "Kanit";
                    font-weight: 300;
                    font-size: 16px;
                    cursor: pointer;
                    display: block;
                    grid-row-start: 1;
                }

                .input_wrapper .reg_dd_cont .reg_dd .menu_label .dropdown_arrow {
                    transform: rotate(0deg);
                    content: url(../Materials/Arrow.svg);
                    transition: transform 0.4s ease-in-out;
                    grid-row-start: 1;
                    justify-self: end;
                    align-self: center;
                }

            .input_wrapper .reg_dd_cont .reg_dd .slide {
                clear: both;
                width: 100%;
                color: #133463;
                height: 0;
                overflow-y: scroll;
                overflow-x: hidden;
                text-align: left;
                transition: all 0.3s linear;
                filter: drop-shadow(0px 6px 15px rgba(217, 217, 217, 0.2));
            }

                .input_wrapper .reg_dd_cont .reg_dd .slide::-webkit-scrollbar {
                    width: 5px;
                    background: #FAFAFA;
                }

                .input_wrapper .reg_dd_cont .reg_dd .slide::-webkit-scrollbar-thumb {
                    background-color: #a6a6a6;
                    width: 50px;
                }

                .input_wrapper .reg_dd_cont .reg_dd .slide .dropdown_item {
                    padding: 15px 0;
                    width: 100%;
                    display: grid;
                    align-content: center;
                    padding-left: 10px;
                    font-family: "Kanit";
                    font-weight: 300;
                    font-size: 16px;
                    color: #133463;
                    border-left: 1px solid #D9D9D9;
                }

                    .input_wrapper .reg_dd_cont .reg_dd .slide .dropdown_item:hover {
                        background-color: #FAFAFA;
                        border-left: 3px solid #D9D9D9;
                        transition: all 0.2s ease-in-out !important;
                    }

                .input_wrapper .reg_dd_cont .reg_dd .slide .dropdown_active {
                    border-left: 3px solid #2462BB;
                    background-color: #F6F9FC;
                }

                    .input_wrapper .reg_dd_cont .reg_dd .slide .dropdown_active:hover {
                        background-color: #F6F9FC;
                        border-left: 3px solid #2462BB;
                    }

            .input_wrapper .reg_dd_cont .reg_dd .show-slide {
                height: 150px;
                background-color: white;
                width: 100%;
            }

.btn_big {
    width: 350px;
    height: 50px;
    background-color: #2462BB;
    color: white;
    display: grid;
    align-content: center;
    justify-content: center;
    font-family: "Kanit";
    font-weight: 500;
    font-size: 16px;
    align-self: center;
    justify-self: center;
    margin: auto;
    cursor: pointer;
}

.error_pass {
    border: 1px solid #FF9292 !important;
}

.validation-summary-errors ul {
    list-style-type: none;
}

.error_pass_msg {
    display: block;
    font-family: "Kanit";
    font-size: 12px;
    font-weight: 300;
    color: #FF9292;
    padding-top: 5px;
}

.error_email {
    border: 1px solid #FF9292 !important;
}

.error_pass_email:after {
    content: "* Ne valja ti mejl druze";
    display: block;
    font-family: "Kanit";
    font-size: 14px;
    font-weight: 300;
    color: #FF9292;
    padding-top: 5px;
}

.table-r {
    cursor: pointer;
}

/*Success Message*/
.success-msg-container {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #a9a9a980;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-msg-wrapper {
    background-color: white;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
}

.success-msg-control {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--black-2);
}

.success-msg-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-img-text {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 20px 2px #1F7CEA;
    }

    50% {
        box-shadow: 0 0 10px 2px #1F7CEA;
    }

    100% {
        box-shadow: 0 0 20px 2px #1F7CEA;
    }
}

.location-marker {
    width: 16px;
    aspect-ratio: 1/1;
    background: #1F7CEA;
    border-radius: 100%;
    position: relative;
    box-shadow: 0 0 20px 2px #1F7CEA;
    border: 1px solid white;
    animation: glow-pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    margin-left: 5px;
    margin-right: 3px;
}

.display-none {
    display: none;
}











