﻿.body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-image: url('images/BGIMAGE.svg');
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.content {
    padding: 0px !important;
}
.card {
    border: 1px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 30px;
    width: 100%;
    max-width: 600px;
    
}

.headingtext{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.login-container, .form-container {
    text-align: center;
}

.avatar {
    display: block;
    margin: 12px auto;
    width: 50px;
    height: auto;
}

.btn-primary {
    background-color: #0657a8 !important;
    border: 1px solid #007bff;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #333;
        text-align: left;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.password-wrapper {
    position: relative;
}

    .password-wrapper input {
        padding-right: 40px;
    }

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.loading-icon {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    display: none;
}

.loading-message {
    text-align: center;
}
