* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: 'Times New Roman', Times, serif; /* Fallback to Arial and sans-serif */

}

.container {
    position: relative;
    display: flex;
    width: 80%;
    max-width: 1100px;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 0, 0);
}

.image-section {
    width: 50%;
    position: relative;
    background-color: #e7f5f5;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.image-section svg {
    position: absolute;
    top: 0;
    right: 160px;
    width: 200px;
    height: 100%;
    z-index: 2;
    transform: scale(-1, 1);
    transform-origin: 100% 0;
}

.login-section {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    z-index: 1;
}

h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #ff2e00;
    text-align: center;
}

p {
    font-size: 14px;
    color: #aa0101;
    margin-bottom: 30px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.forgot {
    margin-bottom: 20px;
    text-align: right;
    font-weight: bold;
}

.forgot a {
    color: #ff2e00;
    text-decoration: none;
}

.btn-login {
    background-color: #ff2e00;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #bd0000;
}

.password-toggle-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        height: auto;
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .login-section {
        width: 100%;
        padding: 20px;
        margin-top: 20px;
    }

    .input-group input {
        font-size: 14px;
        padding: 10px;
    }

    h2 {
        font-size: 28px;
    }

    .btn-login {
        font-size: 18px;
    }

    p {
        font-size: 12px;
    }

    .forgot a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 15px;
    }

    h2 {
        font-size: 24px;
    }

    .btn-login {
        font-size: 16px;
    }

    .input-group input {
        font-size: 12px;
    }
}


.btn-custom {
    background-color: #70c645;
    color: white;
    width: 100%;
    font-size: 1rem;
    padding: 10px;
    border-radius: 8px;
    border: none;
}

.password-toggle-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}
