﻿
/*.container {
    position: center;
    background: #ebe9e9;
    background: red;
    width: 100%;
    padding: 12px;
}
*/

body {
    background: var(--mix3);
    //background: #fff;
    font-family: var(--font-primary);
    font-weight: 500;
    //padding-top: 20px;
    //background-image: url('img/typingphoto.jpg'); /* Correct path */
    background-size: cover; /* Cover the entire body */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating */
    height: 100vh; /* Full height */
}

 

    body input {
        box-shadow: none !important;
        outline: none;
    }

/* Image container as a relative-positioned parent (kept separate) */
.img {
    //position: relative;
    width: 100%;
    /*height: 50vh; Full screen height */
    overflow: hidden;
    transform-origin: center; /* Makes zoom happen from the center */
    transition: transform 0.3s ease-in-out; /* Smooth zoom transition */
}

    /* Background image inside .img */
    .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        //display: block;
        /* Fading border mask */
        -webkit-mask-image: radial-gradient( ellipse closest-side at center, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100% );
        mask-image: radial-gradient( ellipse closest-side at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100% );
    }




.con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -85%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    margin-top: 40px;
    width: 560px;
    height: 280px;
    border: 1px solid #ddd;
    border-top-left-radius: 250px;
    border-left: 3px solid #3292f2;
    border-right: 3px solid #ea4335f2;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
}

.box {
    width: 550px;
    height: 280px;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 62px -36px rgba(36, 36, 36, 0.85);
    border-bottom-left-radius: 210px;
    border-top-right-radius: 210px;
}

/*.box p {
    width: 430px;
    margin-left: 100px;
    margin-top: -15px;

}
 */


h1 {
    font-size: 16px;
    font-weight: bold;
    padding-top: 25px;
    margin-left: 100px;
    color: coral;
    margin-bottom: 0px;
}

.box h6 {
    margin-left: 100px;
    margin-top: 5px;
}

.login-form {
    padding-top: 5px;
    width: 350px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        color: coral;
    }

.form-control {
    padding-left: 45px;
}


.btn {
    width: 100px;
    height: 30px;
    padding: 0;
    margin-top: 5px;
    background: coral;
    border: 1px solid coral;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    text-align: center;
    line-height: 30px; /* vertical center text */
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border 0.3s;
}


/* Styling for the forget password button */
.forget-btn {
    width: 200px;
    height: 35px; /* Increased height for a better look */
    padding: 0;
    margin-top: 5px;
    background: coral;
    border: 1px solid coral;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    text-align: center;
    display: flex; /* Enable flexbox */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border 0.3s;
    flex-direction: row; /* Image and text in a row */
}

    /* Styling for the image inside the button */
    .forget-btn img {
        width: 20px; /* Adjust image size */
        height: 20px; /* Adjust image size */
        margin-right: 8px; /* Space between image and text */
        transition: 0.3s ease; /* Smooth transition */
        background-position: center;
        mask-image: none !important;
    }

    /* Hover effect for the button */
    .forget-btn:hover {
        background: #fff !important;
        color: coral;
        border: 1.5px solid coral;
        cursor: pointer;
    }

        /* Hover effect for the image inside the button */
        .forget-btn:hover img {
            content: url('/img/brain_coral.png'); /* Change to black brain image on hover */
        }



    .forget-btn .spinner {
        border: 2px solid #f3f3f3;
        border-top: 2px solid #3498db;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        animation: spin 0.8s linear infinite;
        display: inline-block;
        vertical-align: middle;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}








.upload .btn.upload-link {
    width: 180px;    
}

    .btn:hover,
    .upload .btn.upload-link:hover {
        background: #fff !important;
        color: coral;
        border: 1.5px solid coral;
        transition: .5s;
        cursor: pointer;
    }


.upload {
    margin-top: 10px;
    font-size: 14px;
    
}
.links {
    display: flex;
    margin-top: 10px;
    font-size: 14px;
    gap: 20px;
}


.input {
    width: 350px;
    height: 50px;
    font-size: 12px;
    color: #262526;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid coral;
    outline: none;
}


/* Responsive tweaks */
@media (max-width: 768px) {
    .table-custom {
        font-size: 0.9rem;
    }

    form {
        padding: 15px;
        margin: 0 auto;
    }
}




.status-message {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #27AE60; /* Green color for success */
}

    .status-message.error {
        color: #E74C3C; /* Red color for errors */
    }
