﻿*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Open Sans', sans-serif;
}

html {
    text-rendering: optimizeLegibility;
    position: relative;
    min-height: 100%;
}

body {
    background: #1a1919;
}

.url-form-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.url-form-container .field-validation-error {
    display: block;
    color: white;
    margin-top: 5px;
    font-size: 12px;
}

.url-form-input {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 450px;
    max-width: 90%;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.url-form-input input {
    width: calc(100% - 70px);
    height: 100%;
    background: white;
    border: 0;
    outline: 0;
    background: #0e0e0e;
    color: white;
    padding: 0 10px;
}

.url-form-input button {
    border: 0;
    outline: 0;
    width: 70px;
    height: 100%;
    background: white;
    border-left: 0;
    cursor: pointer;
    background: #ff0000;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.url-form-input button:hover {
    background: #dd0000;
}