/* Login - Start */

/* Unique Login container */
.login-container {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    /*background-image: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
    /* background-color: #53868b; */
}
.unique-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Unique Login Card */
.unique-login-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Unique Logo image */
.unique-logo-img {
    /* width: 100px;
    height: auto; */
    margin-bottom: 20px;
    height:150px !important;
}

/* Unique Profile name */
.unique-profile-name {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Unique Input Group */
.unique-input-group {
    margin-bottom: 20px;
}

.unique-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.unique-form-control:focus {
    border-color: #007bff;
    outline: none;
}

/* Unique Submit Button */
.unique-btn-submit {
    background-color: #131d8e;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .unique-btn-submit:hover {
        background-color: #211656;
    }

/* Unique Footer styles */
.unique-footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #888;
}

.unique-footer-text {
    color: #888;
}



.password-container {
    position: relative;
}

.password-field {
    padding-right: 30px;
}

.password-toggle {
    position: absolute; 
    right: 10px; 
    top: 50%; 
    transform: translateY(-50%); 
    cursor: pointer;
    font-size: 1.2em; 
    color: #333;
}
