body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.input-container {
    display: flex;
    align-items: center;
    height:10vh;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    width: 150px;
    height: auto;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: calc(100% - 20px);
    position: relative;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #977b7b;
}

.password-toggle {
    position: absolute;
    top: 38%;
    right: 5px;
    transform: translateY(-50%);
    cursor: pointer;
}

input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}

.captcha-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-img {
    margin-right: 3px;
}

.captcha-refresh {
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    font-size:7px;
}

/* Media Queries */
@media only screen and (max-width: 500px) {
    .container {
        max-width: 80%;
    }
}

.text-danger {
    color:maroon;
    font-weight: bolder;
    font-size: large;
}

.center {
    margin-left:auto;
    margin-right:auto;
}

.captchaInputBox {
    width:50%;
    margin-top:20px;
}

.forgotIconStyle {

    font-size:12px;
    font-style: italic;
    padding: 3px;
    margin: 3px;
    
}

.fw-bold {
    font-weight: bold;
}

#loginForm {
    padding:3px;
    margin:3px;
}

.dividerStyleWithLine {
    color:lightgrey;
}

.dividerStyleWithoutLine {
    border:none;
    margin-top:10px;
    margin-bottom:10px;
}


.custom-captcha {
    display: flex;
    align-items: center;
}

.forgotformstyle {
    padding:20px;
    margin:20px;
} 

.rightalign {
    text-align: right;
}

.leftalign {
    text-align: left;
}

.centeralign {
    text-align: center;
}

.btnstyle {
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
    font-style: italic;
    color:#977b7b;
    font-weight: bold;
}

.itemcontainer {
    min-width:100%;
    width:auto;
    display:flex;
    justify-content: space-between;
}

.text-danger {
    color:brown;
    font-weight: bold;
    font-size: 14px;
}

.text-success {
    color:rgb(73, 133, 113);
    font-weight: bold;
    font-size: 14px;
    
}