html,
body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: url("../images/bgimage.jpg") center center no-repeat;
    opacity:6.0;
    box-shadow: 0px 4px 4px 0px #00000040,inset 0 0 0 1000px rgba(0,0,0,.5);
    background-size: cover;
    font-family: Arial;
}

.wrap {
    max-width: 350px;
    border-radius: 20px;
    margin: auto;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding: 40px;
    color: #fff;
    margin-top: 5px;
}

.newwrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 10px;
}

img {
    object-fit: contain;
    height: 50px;
    border-radius: 10px;
}

h2 {
    text-align: center;
}

input[type=text],
input[type=email],
input[type=password] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 5px;
    background: rgba(0, 0, 0, 0.1);
    outline: none;
    border: none;
    border-bottom: 1px dotted #fff;
    color: #fff;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
}

input[type=submit] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 30px;
    outline: none;
    border: none;
    background: #60adde;
    border-radius: 20px;
    font-size: 20px;
    color: #fff;
}

input[type=submit]:hover {
    background: #003366;
    opacity: 0.7;
}

#telephone {
    color: black;
}

p,
a {
    font-size: 15px;
    color: #fff;
}

.left {
    float: left;
}

.right {
    float: right;
}

.error {
    color: red;
}

.success {
    color: white;
}