* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    position: relative;
    background: white;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}

.header {
    width: 100%;
    padding: 12px;
    margin: 40px 0px 40px 0px;
    background-color: transparent;
}

.company-name {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 60px;
    text-align: center;
    width: 100%;
    background-color: transparent;

}
@media (max-width: 680px) {
    .company-name {
        font-size: 32px;
    }
}
.slogan {
    position: relative;
    z-index: 1;
    color: gold;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    margin: 0 auto;
}

.welcom {
    position: relative;
    z-index: 1;
    color: gold;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
}

form {
    z-index: 4;
    position: relative;
    padding: 20px;
    max-width: 500px;
    box-shadow: inset 0 0 1px hsla(0, 0%, 100%, .6), 0 0.5em 1em rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    margin: 0px auto;
    border-radius: 20px;

}

form h1 {
    position: relative;
    text-align: center;
    color: red;
    font-weight: bold;
    font-size: 28px;
    padding: 12px 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-radius: 0px 0px 10px 10px;

}

p.error {
    color: gold;
    font-weight: bold;
    font-size: 22px;
    position: relative;
}

form label {
    position: relative;
    background: transparent;
    width: 100%;
    color: white;
    left: 5%;
    font-size: 22px;
}
form label i{
    position: relative;
    right: -45%;
    top: 35px;
    z-index: 4;
    color: black;
}
form p3 {
    position: relative;
    background: transparent;
    width: 100%;
    color: white;
    padding: 12px;
    font-size: 16px;
}

form p4 {
    position: relative;
    background: transparent;
    width: 100%;
    padding: 12px;
    font-size: 20px;
}

form p3 a,
form p4 a {
    color: red;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding: 8px 2px;
    background-color: transparent;
    z-index: 12;
}

form input {
    border: none;
    padding: 12px 20px;
    width: 90%;
    left: 5%;
    background: #ddd;
    outline: none;
    color: black;
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px;
}



form button {
    border: none;
    outline: none;
    width: 100%;
    padding: 12px 20px;
    position: relative;
    background-color: blueviolet;
    border-radius: 50px;
    margin: 10px 0px 10px 0px;
    color: white;
    font-weight: bold;
    font-size: 26px;
    text-transform: uppercase;
}