﻿@import "https://use.fontawesome.com/releases/v5.5.0/css/all.css";

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    font-family: 'Expletus Sans';
    background-image: url(../Images/mc.jpg);
}

h1 {
    text-align: center;
    color: white;
    font-size: 100px;
    margin-top: 0;
}

p {
    text-align: center;
}

.layer {
    background-color: rgba(70, 130, 180, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.login-box {
    height: 420px;
    width: 320px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: White;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding: 10px 30px;
}

    .login-box h1 {
        float: left;
        font-size: 40px;
        border-bottom: 6px solid DodgerBlue;
        margin-bottom: 50px;
        padding: 13px 0;
    }

.textbox {
    width: 100%;
    overflow: hidden;
    font-size: 20px;
    padding: 8px 0;
    margin: 8px 0;
    border-bottom: 1px solid DodgerBlue;
}

    .textbox i {
        width: 26px;
        float: left;
        text-align: center;
    }

    .textbox input {
        border: none;
        outline: none;
        background: none;
        color: White;
        font-size: 18px;
        width: 80%;
        float: left;
        margin: 0 10px;
    }

.btn {
    width: 100%;
    background: none;
    border: 2px solid DodgerBlue;
    color: White;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 12px;
}

    .btn:hover {
        background: DodgerBlue;
    }