@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html * {
    font-family: "Ubuntu Sans", sans-serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h4 {
    color: #00A8F0 !important
}

[cform] {
    background-color: rgba(255, 255, 255, 0.7);
    color: rgba(0, 67, 105, 1) !important;
}

[cform]:focus {
    color: rgba(0, 67, 105, 1) !important;
}

textarea {
    resize: none;
    border-radius: 4px;
}

.hide {
    display: none !important;
}

#form {
    margin: auto;
    z-index: 10002;
    font-size: 1.1em !important;
    color: white;
    backdrop-filter: blur(10px);
    padding: 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(229, 221, 200, 0.2);
    display: block;
}


#form td {
    color: white;
}

@media (max-width: 1200px) {
    #form td {
        font-size: 1.5rem;
    }

    #form h4 {
        font-size: 2rem;
    }
}

#form .form-div {
    width: 40%;
    height: fit-content;
    margin: auto;
    text-align: center;
}

@media (max-width: 1200px) {
    #form .form-div {
        width: 90%;
    }
}

#form .form-div .draw {
    position: relative;
}

#form .form-div .draw canvas {
    border-radius: .35rem;
    background-color: rgba(255, 255, 255, 0.7);
    touch-action: none;
}

#form .form-div .draw span.placeholder {
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    color: #858796;
    cursor: default;
    user-select: none;
}

#form .form-div .draw a.btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.form-control,
.form-control:hover {
    border: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border: 1px solid #00A8F0 !important;
    background-color: white !important;
}

.btn-primary {
    background-color: #00A8F0 !important;
    border-color: #00A8F0 !important;
}

.btn-primary:hover,
.btn-primary:focus {
    filter: brightness(1.15);
}

.modal {
    z-index: 10004;
}