/* General reset and layout settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.dashboardredirectcontainer {
    position: fixed; /* Fix the position relative to the viewport */
    top: 50%; /* Vertically center */
    left: 50%; /* Horizontally center */
    transform: translate(-50%, -50%); /* Offset the center so it truly aligns */
    background-color: #A9A9A9; /* Example background */
    padding: 20px; /* Add some padding for content */
    border-radius: 10px; /* Optional: Add rounded corners */
    color: white; /* Text color */
    height:auto;
    width:400px;  
    display:inline;
    z-index: 1000;
}

.dashboardredirectcrossbuttoncontainer
{
    width:100%;
    height:40px;
}

.dashboardredirectcrossbuttoncontainer a
{
    float:right;
}

.close-button {
    font-size: 32px;
    font-weight: bold;
    background-color: transparent;
    border: none; 
    color: #333;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    outline: none;
    float:right;
}

.close-button:hover {
    color: #e78444; 
}

.close-button-container .close-button {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-button:hover {
    background-color: rgba(231, 132, 68, 0.1);
    transform: scale(1.1); 
}

.dashboardredirecttextcontainer
{
    margin-top:10px;
    margin-bottom:10px;
    background-color: red;
    text-align: center;
    display: flex;
    justify-content: center;
    width:100%;
}

.dashboardredirctimagecontainer
{
    width:100%;
    height:auto;
    display: flex;
    justify-content: center;
}

.dashboardredirctimagecontainer img
{
    height:150px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling for the professional button */
.professional-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #292727, #3e3535); /* Gradient background */
    border-radius: 50px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: all 0.3s ease; /* Smooth transition */
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom:10px;
}

/* Add a hover effect */
.professional-button:hover {
    transform: translateY(-3px); /* Slightly move button upwards */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}

/* Optional: Add a subtle hover gradient effect */
.professional-button:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: 0;
    transition: left 0.5s ease-in-out;
}

.professional-button:hover::before {
    left: 100%;
}

.loginimagecontainer
{
    margin-top:10px;
    margin-bottom:10px;
    text-align: center;
    display: flex;
    justify-content: center;
    width:100%;
}

.loginimagecontainer img
{
    height:90px;
}

.loginheadercontainer
{
    width:100%;
    text-align: center;
    height:30px;
}

.loginformcontainer
{
    width:100%;
    height:400px;
    justify-content: center;
    padding:20px;
}

input
{
margin-bottom:20px;
}
 .input-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 400px;
        }

        label {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
        }

        .styled-input {
            padding: 12px 16px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
            transition: border-color 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
            outline: none;
            width: 100%;
            box-sizing: border-box;
        }

        .styled-input:focus {
            border-color: #4a90e2;
            box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
        }

        .submit-btn {
            padding: 12px 16px;
            font-size: 16px;
            background-color: black;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 12px;
            width:80%;
        }

        .submit-btn:hover {
            background-color: white;
            color:black;
        }

.submitbuttoncontainer
{
    width:100%;
    text-align: center;
}        

