﻿
body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('../images/login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x:hidden;
}

.cls-validation-error{
    font-size:14px;
}
.card {
    border-radius: 25px !important;
    box-shadow: 0px 4px 30px #000;
}

.btn-primary {
    background: #f83539 !important;
    border: 2px solid #f83539 !important;
    border-radius: 50px;
    padding: 12px;
}
    .btn-primary:hover {
        background: #dc1e22 !important;
        border: 2px solid #dc1e22 !important;
        border-radius: 50px;
        padding: 12px;
    }
.form-control {
    padding: 0.75rem;
    border: var(--bs-border-width) solid #f83539;
}

.drop-in {
    animation: drop-in 1s ease 200ms backwards;
}
.form-label {
    font-weight: 600;
    color: #000 !important;
    font-size: 13px !important;
}
@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}
.field-icon {
    float: right;
    margin-right: 14px;
    margin-top: -33px;
    position: relative;
    z-index: 2;
}


.form-label2 {
    font-weight: 600;
    color: #000 !important;
    font-size: 13px !important;
}

@media screen and (max-width:52.75em) {
   
}

@media screen and (max-width:43em) {
    .field-icon {
        margin-right: 11px;
        margin-top: -28px;
    }
}
    