.adminLoginContainer {
    display: flex;
    justify-content: center;
    background-color: rgb(57 86 179);
    height: 100vh;
    align-items: center;
}
.adminInnerBox {
    width: 65%;
    height: 75vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 8px;
}
.lightBluePart {
    background-color: rgb(220 227 247);
    border-radius: 16px 0px 0px 16px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
.lightBluePart img {
    width: 20rem;
    height: 20rem;
}
.logoWrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logoWrap img{
    width: 10rem;
    height: 3rem;
}
.whitePart {
    background-color: #fff;
    border-radius: 0px 16px 16px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whiteWrap {
    width: 80%;
    height: auto;
}

.card-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(57 86 179);
}
.card-body form input {
    width: 99%;
    padding: 0.8rem 0rem 0.8rem 0.8rem;
    outline: none;
    border-radius: 2rem;
    border: 1.5px solid #ccc;
}

.card-body form input:focus {
    border: 1.5px solid rgb(57 86 179);
    border-radius: 2rem;
}

.adminCustomBtn {
    display: flex;
    justify-content: center;
}

.adminCustomBtn button {
    padding: 0.8rem;
    width: 50%;
    cursor: pointer;
    border-radius: 2rem;
    border: 1px solid rgb(57 86 179);
    background: rgb(57 86 179);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}
.form-group label {
    font-size: 12px;
}

.invalid-feedback {
    color: red;
    font-size: 10px;
    font-weight: normal;
    font-family: "Source Sans 3", sans-serif;
}
@media screen and (min-width: 2100px) {
    .adminInnerBox {
        width: 90%;
        height: 60vh;
    }
}

@media screen and (max-width: 768px) {
    .adminInnerBox {
        width: 95%;
        height: auto;
        display: block;
    }
    .lightBluePart {
        border-radius: 16px 16px 0px 0px;
        padding: 1rem;
        gap: 1rem;
    }
    .whitePart {
        border-radius: 0px 0px 16px 16px;
        padding: 1rem;
    }
    .lightBluePart img {
        width: 12rem;
        height: 12rem;
    }
    .logoWrap img{
        width: 10rem;
        height: 3rem;
    }
}
