input:focus {
    outline: 3px rgba(20, 213, 255, 0.76) auto;
}

.admin-interface {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.70);
    width: 100vw;
    height: 100vh;
    z-index: 15;
}

.admin-interface .background {
    width: 100%;
    position: absolute;
    top: 35%;
    /* background: linear-gradient(90deg, rgba(236, 115, 5, 0) 50%, #EC7305 52.08%, rgba(196, 196, 196, 0) 100%, #EC7305 100%); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin-frame-text {
    position: relative;
}

.admin-interface a {
    position: absolute;
    color: #EC7305;
    right: 20px;
    top: 10px;
}

.admin-interface .background .admin-frame-text {
    box-sizing: border-box;
    background: #FFFFFF;
    border: 2px solid #EC7305;
    color: #000;
    height: 100%;
    text-align: center;
    padding-top: 2%;
    width: 644px;
    font-weight: normal;
    font-size: 2.4rem;
    border-radius: 10px;
}


.admin-frame-text .input-container {
    position: relative;
}

.admin-frame-text input {
    font-size: 1.6rem;
    background: #FFF;
    border: solid #EC7305 1px;
    width: 90%;
    height: 3rem;
    margin: 40px 5% 21px 5%;
    font-family: "Roboto", sans-serif;
    color: #818589;
    padding: 1rem;
    resize: vertical;
}

.admin-frame-text .error {
    margin: 2% 2% 0 2%;
    width: 96%;
}

.admin-frame-text label {
    margin: 0;
    position: absolute;
    top: 21px;
    left: 50px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #EC7305;
}

.error, .success {
    text-align: center;
    border: 1px solid #EC7305;
    box-sizing: border-box;
    border-radius: 20px;
    width: 100%;
    font-weight: normal;
    font-size: 1.4rem;
    height: 2rem;
    margin-bottom: 2.5%;
    position: relative;
}

.error {
    background: #FBC0C0;
    color: #EC7305;
}

.success {
    background: #CCFBC0;
    color: #21A400;
}

input::placeholder, textarea::placeholder {
    color: #B9BCBF;
}

.clickable {
    cursor: pointer;
}

.container {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    overflow: hidden;
}

.button {
    text-align: center;
    font-weight: normal;
    font-size: 2.4rem;
    padding: 0.4rem 1rem;
    background: white;
    border: 3px solid #818589;
    border-radius: 5px;
    color: #000000;
    cursor: pointer;
    transition: all 0.1s ease-out;
}

.button:hover {
    color: #818589;
    background: #FFF7EF;
    border: solid #EC7305;
}

svg path {
    fill: #000;
    transition: fill 0.2s ease-out;
}

.services .service:hover svg path {
    fill: #EC7305;
}

svg {
    width: 70px;
    height: 70px;
}

.header {
    text-align: center;
    background: #FFFFFF;
    color: #000000;
    font-size: 3.6rem;
    font-weight: bold;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 23px;
}

button {
    padding: 0;
    border: 0;
}

*:focus {
    outline: none;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

ol {
    list-style-type: none;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

li {
    display: unset;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

ol {
    list-style-type: none;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

ul ul, ol ul {
    list-style-type: none;
    list-style-position: inside;
    margin-left: 0;

}

ol ol, ul ol {
    list-style-type: lower-latin;
    list-style-position: inside;
    margin-left: 0;
}

h1 {
    margin: 0;
    font-size: unset;
}