html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    font-family: "Raleway", sans-serif;
    outline: none;
    font-display: swap;
}

a {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}

main {
    background-image: url(/images/login.jpeg);
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

main > img.logo {
    width: 10%;
    height: auto;
    filter: invert(1);
    margin: auto;
}

main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0 ,.4);
}

main form {
    width: 50%;
    background: transparent;
    backdrop-filter: blur(30px);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 25% 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

main form span {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 40%;
    position: relative;
}

main form span input, main form span select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

main form span img {
    filter: invert(1);
    position: absolute;
    right: 8px;
    top: 7px;
    width: 20px;
    height: auto;
}

main form button {
    width: auto;
    padding: 10px 50px;
    box-sizing: border-box;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition-duration: .5s;
}

main form button:hover {
    background-color: #fff;
    color: #000;
    transition-duration: .5s;
}

main form > a {
    color: #fff;
    font-size: 14px;
    transition-duration: .5s;
}

main form > a:hover {
    text-decoration: underline;
    transition-duration: .5s;
}

aside#warn {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    padding: 10px 100px;
    font-size: 14px;
    border-radius: 5px;
    display: none;
}

aside#warn::before {
    content: "X";
    position: absolute;
    left: -10px;
    top: -10px;
    background-color: transparent;
    backdrop-filter: blur(30px);
    border-radius: 50%;
    color: #fff;
    padding: 10px;
    font-size: 8px;
    line-height: 4px;
    letter-spacing: 0px;
    text-align: center;
    cursor: pointer;
}

aside#confirm {
    border: 1px solid #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 5px;
    padding: 25px;
    box-sizing: border-box;
    width: 50%;
}

aside#confirm img {
    width: 15%;
    height: auto;
    filter: invert(1);
}

aside#confirm p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5em;
}