@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    /*background-image: url('../img/bg-login-1.png');*/
}

.container {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container .col {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    display: flex;
}

.box {
    width: 100%; 
    margin: 20px;
    padding: 20px;
}
.box .box-header {}
.box .box-header .box-title {
    color: #333333;
    font-size: 32px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.box .box-body {}

.form-group {
    /*border: solid black 1px;*/
    margin: 0;
    padding: 10px;
}
.form-group label {
    color: #666666;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: start;
    font-family: "Poppins", sans-serif;
}
.form-group .form-control {
    border-radius: 12px;
    height: 47px;
    border: 1px solid rgba(102, 102, 102, 0.35);
    background-color: #fff;
}
.form-group .form-check {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    margin-top: -2px;
}
.form-group .form-link {
    color: #666666;
    font-size: 12px;
}
.form-group .form-link:hover {
    color: #111111;
    text-decoration: none;
}

.btn-1 {
    background-color: #111111;
    width: 100%;
    height: 47px;
    color: #fff;
    border-radius: 32px;
    border: none;
    font-family: "Poppins", sans-serif;
}

.hero {
    width: 90%;
}

.flex {
    display: flex;
    justify-content:space-between;
}

a:hover {
    text-decoration: none;
}

.bg-img {
    background-image: url("../../assets/img/bg-login.jpg");
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
}

.dis-agr {
    max-width: 1000px;
}
.dis-agr h1 {
    color: #333333;
    font-size: 42px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.dis-agr h2 {
    color: #333333;
    font-size: 32px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.dis-agr h2 ul li, .dis-agr a {
    color: #333333;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

/*     Estilo para sa checked na checkbox 
    input[type="checkbox"]:checked + label {
      background-color: #111111;  Kulay kapag checked 
    }*/

/* Media query for screens less than 500px */
@media screen and (max-width: 883px) {
    .container {
        flex-direction: column;
    }

    .d-sm-none {
        display: none;
    }
}