﻿
/*@font-face {
    font-family: 'LemonMilk';
    src: url('/fonts/LEMONMILK-Bold.otf') format('opentype');
    src: url('/fonts/LEMONMILK-BoldItalic.otf') format('opentype');
    src: url('/fonts/LEMONMILK-Light.otf') format('opentype');
    src: url('/fonts/LEMONMILK-LightItalic.otf') format('opentype');
    src: url('/fonts/LEMONMILK-Medium.otf') format('opentype');
    src: url('/fonts/LEMONMILK-MediumItalic.otf') format('opentype');
    src: url('/fonts/LEMONMILK-Regular.otf') format('opentype');
    src: url('/fonts/LEMONMILK-RegularItalic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'KeepCalm';
    src: url('/fonts/KeepCalm-Medium.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}*/
h1 {
    /*font-family: 'LemonMilk';*/
    font-size: 30px;
}

h2 {
    /*font-family: 'KeepCalm';*/
    font-size: 22px;
}

h3 {
    font-family: 'KeepCalm';
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* font-family: 'Segoe UI', sans-serif;*/
    font-family: 'Poppins', sans-serif;
    background-color: #f2f5fe;
}

h1 {
    font-family: 'LemonMilk', sans-serif;
    font-size: 30px;
}

.container {
    display: flex;
    height: 75vh;
    flex-direction: row;
}

.left-panel1 {
    flex: 1;
    background-color: #fff;
}


.left-panel {
    position: relative;
    width: 50%;
    background-image: url('/images/Image-for-login-page.png'); /* if background */
    background-size: cover;
    background-position: center;
}

.logo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 30px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8); /* subtle white background */
    padding: 5px 10px;
    border-radius: 6px;
}

.left-panel img {
    width: 100%;
    height: 75%;
    object-fit: cover;
}

.right-panel2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f7ff;
    padding: 30px;
}
.right-panel {
    flex: 1;
   /* display: flex;*/
    justify-content: center;
    align-items: center;
    background-image: url('/images/Blue-background.png'); /* ✅ Replace with your actual image path */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

.form-box {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;   
    max-width: 400px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/*.form-box {
    margin-top: 50px;
}*/

    .form-box h1 {
        color: #0077d6;
        font-size: 26px;
        margin-bottom: 10px;
    }

    .form-box p {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 25px;
    }

    .form-box input {
        width: 100%;
        padding: 12px 16px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 20px;
        font-size: 14px;
        box-shadow: 2px 3px #ccc;
    }

    .form-box a {
        font-size: 13px;
        color: #0077ff;
        text-decoration: none;
        display: block;
        margin-bottom: 20px;
    }

    .form-box button {
        background-color: #ff7f2a;
        color: white;
        border: none;
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 20px;
        box-shadow: 2px 3px #aaa;
        cursor: pointer;
    }

    .form-box .bottom-link {
        font-size: 13px;
        color: #000;
        text-decoration: none;
        margin-top: 15px;
    }

.footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #777;
}
.top-menu {
    background-color: #ffffff;
    padding: 10px 30px;
    display: flex;
    justify-content: flex-end;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .top-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 20px;
    }

    .top-menu li {
        font-size: 14px;
    }

    .top-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
    }

    .top-menu .active a {
        color: #0077d6;
    }

.form-box button:hover {
    background-color: #e66d1c; /* Slightly darker orange */
    box-shadow: 2px 4px #888;
    transition: all 0.2s ease-in-out;
}

@media (max-width: 768px) {
    .left-panel {
        /* was display: flex */
        position: relative; /* Add this */
        align-items: center;
        justify-content: center;
    }

        .left-panel img {
            max-height: 90vh;
            width: auto;
            object-fit: contain;
        }

    .logo-overlay {
        top: 10px;
        left: 10px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    /*.left-panel {
        display: none;
    }
*/
    .right-panel {
        flex: none;
        height: 100vh;
    }

    .form-box {
        margin-top: auto;
        margin-bottom: auto;
    }
    

    .left-panel {
        /* was display: flex */
        position: relative; /* Add this */
        align-items: center;
        justify-content: center;
    }

        .left-panel img {
            max-height: 90vh;
            width: auto;
            object-fit: contain;
        }

    .logo-overlay {
        top: 10px;
        left: 10px;
        height: 40px;
    }
}
