<style >
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Slider Section */
.slider {
    position: relative;
    width: 60%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Login Section */
.login-container {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fb;
}

.login-card {
    width: 80%;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
}

.logo-placeholder img {
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

/*form input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}*/

/*form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}*/

    form button:hover {
        background-color: #0056b3;
    }

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

    .login-links a {
        color: #007bff;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
    }

/* Popup Modal */
/*.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e3f0ff;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
}

    .modal-header span {
        cursor: pointer;
        font-size: 18px;
        color: #777;
    }

.modal-body {
    padding: 20px 0;
    text-align: center;
}

    .modal-body input {
        width: 80%;
        padding: 10px;
        margin: 10px 0;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 15px;
    }*/

.reset-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

    .reset-btn:hover {
        background-color: #c82333;
    }
/*
.modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}*/

.submit-btn, .close-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px;
}

.submit-btn {
    background-color: #007bff;
}

.close-btn {
    background-color: #0056b3;
}

    .submit-btn:hover, .close-btn:hover {
        opacity: 0.9;
    }

@media (max-width: 768px) {
    .slider {
        display: none;
    }

    .login-container {
        width: 100%;
    }
}
