.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loginCard {
    background-color: rgba(31, 29, 29, 0.8);
    padding: 50px 100px 50px 100px;
    border-radius: 30px;
    color: #FAF9F6;
    font-size: 20px;
    font-weight: 450;
}

.btn-primary {
    display: block;
    margin: 0 auto;
    width: 65%;
    background-color: #8d918d34;
    border: none;
    font-weight: 500;
}
.btn-primary:hover {
    background-color: #FAF9F6;
    color: black;
}


input[type="text" i] {
    box-shadow: none;
    border: 2px solid #8D918D;
    color: black;
    font-weight: 700;
    text-align: center;
}
input[type="text" i]:focus {
    background-color: rgba(0, 0, 0,0.1);
    box-shadow: none;
    border: 2px solid #8D918D;
    color: white;
}

input[type="password" i] {
    box-shadow: none;
    border: 2px solid #8D918D;
    color: black;
    font-weight: 700;
    text-align: center;
}
input[type="password" i]:focus {
    background-color: rgba(0, 0, 0,0.1);
    box-shadow: none;
    border: 2px solid #8D918D;
    color: white;
}


.form-check-input[type=checkbox] {
    border: none;
    box-shadow: none;
}

.form-check-input[type=checkbox]:checked {
    background-color: rgb(245, 102, 50);
    border: none;
    box-shadow: none;
}

body {
    background-image: url("../images/bg1.jpg");
    background-size: cover;
}

h1 {
    padding: 10px;
    border-radius: 12px;
    border: 5px solid #8D918D;
    background-color: rgb(245, 102, 50);
    color: rgb(43, 42, 42);
}