﻿@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

    section .imgBx {
        position: relative;
        width: 50%;
        height: 100%;
    }

        section .imgBx:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(225deg, #91e63, #03a9f4);
            z-index: 1;
            mix-blend-mode: screen;
        }

        section .imgBx img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    section .contentBx {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 100%;
    }

        section .contentBx .formBx {
            width: 50%;
        }

            section .contentBx .formBx h2 {
                color: #087173;
                font-weight: 600;
                font-size: 1.5em;
                text-transform: uppercase;
                margin-bottom: 20px;
                border-bottom: 4px solid #608b3b;
                display: inline-block;
                letter-spacing: 1px;
            }

            section .contentBx .formBx .inputBx {
                margin-bottom: 20px;
            }

                section .contentBx .formBx .inputBx span {
                    font-size: 16px;
                    margin-bottom: 5px;
                    display: inline-block;
                    color: #607d8b;
                    font-weight: 300;
                    font-size: 16px;
                    letter-spacing: 1px;
                }

                section .contentBx .formBx .inputBx .textbox {
                    width: 100%;
                    padding: 10px 20px;
                    outline: none;
                    font-weight: 400;
                    border: 1px solid #607d8b;
                    font-size: 16px;
                    letter-spacing: 1px;
                    color: #607d8b;
                    background: transparent;
                    border-radius: 30px;
                }

                section .contentBx .formBx .inputBx .giris {
                    width: 100%;
                    padding: 10px 20px;
                    border-radius: 30px;
                    background: #608b3b;
                    color: #fff;
                    outline: none;
                    border: none;
                    font-weight: 500;
                    cursor: pointer;
                    transition: 0.5s;
                }

                    section .contentBx .formBx .inputBx .giris:hover {
                        background: #607d8b;
                    }

            section .contentBx .formBx .remember {
                margin-bottom: 10px;
                color: #607d8b;
                font-weight: 400;
                font-size: 14px;
            }

            section .contentBx .formBx .inputBx p {
                color: #607d8b;
            }

                section .contentBx .formBx .inputBx p a {
                    color: #608b3b;
                    text-decoration: none;
                }

            section .contentBx .formBx h3 {
                color: #607d8b;
                text-align: center;
                margin: 80px 0 10px;
                font-weight: 500;
            }

            section .contentBx .formBx .sci {
                display: flex;
                justify-content: center;
                align-items: center;
            }

                section .contentBx .formBx .sci li {
                    list-style: none;
                    width: 50px;
                    height: 50px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #607d8b;
                    border-radius: 50%;
                    margin: 0 7px;
                    cursor: pointer;
                }

                    section .contentBx .formBx .sci li:hover {
                        background: #608b3b;
                    }

                    section .contentBx .formBx .sci li img {
                        transform: scale(0.5);
                        filter: invert(1);
                    }

@media (max-width: 768px) {

    section .imgBx {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    section .contentBx {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

        section .contentBx .formBx {
            width: 100%;
            padding: 40px;
            background: rgba(255 255 255 / 0.9);
            margin: 50px;
        }

            section .contentBx .formBx h3 {
                color: #607d8b;
                text-align: center;
                margin: 30px 0 10px;
                font-weight: 500;
            }
}

/* Alert CSS */

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: bold;
    }

    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

    .alert-dismissable .close,
    .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }
