﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: Roboto;
}

body {
    background: linear-gradient(270deg, #cc64e6, #9198e5);
}

.navbar-fixed-top {
    display: none;
}

.container {
    display: flex;
    justify-content: center;
}

.panel-default {
    width: 1000px;
    height: 600px;
    border-radius: 40px;
    margin-top: 50px;
}

.panel-body {
    height: 100%;
}

.home-img {
    width: 85%;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group {
    font-size: 16px;
}

.col-lg-6 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-warning {
    width: 100%;
    border: none;
}

.panel-heading {
    display: none;
}

.btn-warning {
    background-color: #e64ef0;
    border-color: #d452dd;
}

.btn-warning:hover {
    background-color: #ef78f7;
}

.error {
    position: fixed;
    top: 8%;
    left: 10%;
    z-index: 1000;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 15px;
    padding: 2%;
    box-shadow: 7px 4px 4px hsl(0deg 0% 50% / 32%);
}

@media (max-width: 1500px) and (orientation: portrait) {
    body {
        padding-top: 10px;
    }

    .panel-default {
        width: auto;
        height: fit-content;
        border-radius: 40px;
        margin: 0px 10px;
    }
}