* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Times, serif;
    font-family: "Constantia";
}

body {
    position: relative;
    min-height: 100%;
    width: 100%;
}

.cont {
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    /* height: 100%;
    min-height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow: auto;
    background-color: #a21d20;
}

.all_card {
    position: relative;
    z-index: 1;
}

header img {
    display: block;
    margin: auto;
}

.titles {
    padding-bottom: 8px;
}

.titles h2 {
    color: white;
    font-weight: 600;
    text-align: center;
    /* font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    font-size: 26px;
    line-height: 1.42857143;
}

.titles h3 {
    font-size: 16px;
    text-align: center;
    /* font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.errorMSG {
    color: #290809;
    font-weight: 600;
    text-align: center;
    padding: 5px;
}


/* form style*/

.form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form input {
    border-radius: 10px;
    height: 45px;
    width: 100%;
    max-width: 380px;
    padding: 6px 12px;
    margin-bottom: 10px;
    color: #2b2f33;
    border: 1px solid #dfe8f1;
    font-size: 16px;
    font-family: "Times New Roman", Times, serif;
}

.form input[type=text]:focus,
.form input[type=password]:focus {
    color: #333;
    border-color: #3da6ff;
    outline: none;
    box-shadow: inset 1px 1px 3px #f6f6f6;
}

.form input[type=submit] {
    border-color: white;
    background: white;
    color: #a21d20;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 700;
}

.form input[type=submit]:hover {
    border-color: #ccc;
    background: #ccc;
}

.space_box {
    height: 50px;
}


/* footer*/

footer {
    position: absolute;
    bottom: 0;
    padding: 15px;
}

footer a {
    text-decoration: none;
    color: white;
    margin: 10px;
    font-size: large;
    letter-spacing: 3px;
}