
.input[type=text] {
    width: 300px;
    padding-right: 20px;
    padding-left: 20px;
    height: 32px;
    border: none;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ececec;
    margin: 5px;
    text-align: center;
}

.input[type=password] {
    width: 300px;
    padding-right: 20px;
    padding-left: 20px;
    height: 32px;
    border: none;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ececec;
    margin: 5px;
    text-align: center;
}

.input[type=email] {
    width: 300px;
    padding-right: 20px;
    padding-left: 20px;
    height: 32px;
    border: none;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ececec;
    margin: 5px;
    text-align: center;
}

.textarea {
    width: 300px;
    padding-right: 20px;
    padding-left: 20px;
    height: 32px;
    border: none;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ececec;
    margin: 5px;
    text-align: center;

}


.button:disabled,
.input[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

.p {
    color: red;
    font-family: Roboto, serif;
}

.text {
    color: aqua;
    font-family: Roboto, serif;
}

.h2 {
    color: #ececec;
    font-family: Roboto, serif;
    font-size: 24px;
    height: 30px;
    line-height: 30px;
}

.h3 {
    color: #ececec;
    font-family: Roboto, serif;
    font-size: 18px;
    height: 25px;
    line-height: 25px;
}

.label {
    font-family: Roboto, serif;
}

.button {
    cursor: pointer;
    height: 35px;
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: .3s;
    z-index: 1;
    border-radius: 5px;
    font-family: inherit;
    color: #ffffff;
}

.button::before {
    content: '';
    width: 0;
    height: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #ffffff;
    transition: .5s ease;
    display: block;
    z-index: -1;
}

button:hover::before {
    width: 105%;
}

button:hover {
    color: #111;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
}

.myDiv {
    size: 1px;
    width: 400px;
    background-color: #000000;
    border-radius: 5px;
    text-align: center;
    padding: 5px 10px 0;
    opacity: 0.85;
    margin-bottom: 30px;
    display: inline-block;
}

.myDiv2 {
    size: 1px;
    width: 400px;
    background-color: #000000;
    border-radius: 5px;
    text-align: center;
    padding: 30px 10px 15px;
    opacity: 0.85;
    display: inline-block;
}

.blackBox {
}

.logo {
    height: 180px;
    margin: 25px;
}

.background {
}

::placeholder {
    color: #aaaaaa;
    font-family: Roboto, serif;
}

.loginLink {
    color: brown;
    font-family: Roboto, serif;
}