/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

.left {
    width: 50%;
    height: 100vh;
    background-color: #F2F4F7;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.left .images img {
    max-width: 100%;
    height: auto;
    display: block;
}

.form-container {
    width: 50%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-section {
    text-align: center;
}

.header-section .heading h1 {
    color: #333;
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

.form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form form .cnic-info,
.form form .pasword {
    width: 100%;
}

.form form label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form form .cnic-input,
.form form .pasword-input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.form form .cnic-input i,
.form form .pasword-input i {
    font-size: 18px;
    color: #E67E22;
    margin-right: 10px;
}

.form form input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.form form input::placeholder {
    color: #999;
}

.form form button {
    height: 50px;
    width: 100%;
    border-radius: 10px;
    background-color: #E67E22;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-bottom: 0px;
    transition: background-color 0.3s ease;
}

.form form button:hover {
    background-color: #d67b2c;
}

.signup-link {
    text-align: center;
    margin-top: 10px;
}

.signup-link p {
    font-size: 14px;
    color: #555;
}

.signup-link a {
    color: #E67E22;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

.header-section .logo img{
    width: 170px;
    height: 100px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* Responsive Design */
@media (max-width: 980px) {
    .container {
        flex-direction: column;
        border-radius: 0;
    }

    .left {
        display: none;
    }

    .form-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    

    .header-section .heading h1 {
        font-size: 24px;
    }
    .form form .cnic-input,
    .form form .pasword-input {
        height: 45px;
    }

    .form form button {
        height: 45px;
        font-size: 14px;
    }

    .header-section .heading h1 {
        font-size: 22px;
    }

    .signup-link p {
        font-size: 12px;
    }
}