﻿@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');


body {
    margin: 0;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    text-align: left;
    background-color: #2b97cc;
    background-image: url(../images/dominos/pizza-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top right;
}

.navbar-laravel {
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.navbar-brand, .nav-link, .my-form, .login-form {
    font-family: Roboto, sans-serif;
}

.my-form {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 50px;
}

    .my-form .row {
        margin-left: 0;
        margin-right: 0;
    }

.login-form {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


    .login-form .row {
        margin-left: 0;
        margin-right: 0;
    }

.error {
    color: red;
    position: static;
    display: block;
    text-align: center;
    background: #f1cbd1;
    width: 350px;
    margin: 15px auto;
    border-radius: 5px;
    font-size: 17px;
    padding: 4px;
    color: #63222c;
}

.card {
    background: transparent;
    border: 0;
}

.card-header {
    background: #f1f1f1;
}

    .card-header h1 {
        color: #006ca5;
        font-size: 30px;
        font-weight: 600;
    }

.card-body {
    background: rgba(255,255,255,1);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.input-group-text {
    background: #ffffff;
    border-right: 2px;
}

    .input-group-text i {
        opacity: 0.6;
    }

.form-control.ui-autocomplete-input {
    max-height: 50px;
    overflow: auto;
}

.ui-autocomplete {
    max-height: 250px;
    max-width: initial;
    overflow-y: scroll;
}

.required:after {
    content: "*";
}

.option {
    border: 1px solid grey;
    margin: 10px auto;
}

.option.active {
    border: 2px solid red;
}