﻿body {
    margin: 0;
    padding: 0;
    background-color: white;
    background-image: url(../images/16.jpg);
    background-size: cover;
    font-family: sans-serif;
}

.Login-Box {
    width: 260px;
    height: 340px;
    background: rgba(166, 216, 238, 0.86);
    color: rgba(166, 216, 238, 0.86);
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
}

.avtar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 22px;
    color: darkcyan;
}

.Login-Box p {
    margin: 0;
    padding: 0;
    margin-top: 22px;
    font-weight: bold;
    color: royalblue;
}

.Login-Box text {
    width: 100%;
    margin-bottom: 20px;
}

.Login-Box input[type="Username"] {
    margin-top: 20px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: navy;
    font-weight: bold;
    text-align: center;
    outline: none;
    height: 40px;
    font-size: 16px;
    width: 100%;
}

.Login-Box input[type="password"] {
    margin-top: 2px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: navy;
    font-weight: bold;
    text-align: center;
    outline: none;
    height: 40px;
    font-size: 16px;
    width: 100%;
}

.Login-Box input[type="submit"] {
    margin-top: 5px;
    border: none;
    outline: none;
    height: 28px;
    width: 100%;
    background: #fb2525;
    color: #fff;
    font-size: 18px;
    border-radius: 8%;
}

    .Login-Box input[type="submit"]:hover {
        cursor: pointer;
        background: #ffc1e7;
        color: #000;
    }

.Login-Box a {
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 20px;
    color: darkslategrey;
}

    .Login-Box a:hover {
        cursor: pointer;
        background: #ffc1e7;
        color: #000;
    }
