﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../img/loginback1L.jpg');
    background-size: 100% 100vh; /* stretches image full width and height */
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    display: flex;
    background-img: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

/* Left Panel */
.left {
    flex: 1;
    background: linear-gradient(135deg, #2d446a, #b7cbeb);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    padding-top: 20px;
}

    .left h2 {
        margin-bottom: 15px;
    }

    .left p {
        margin-bottom: 20px;
        text-align: center;
    }

    .left button {
        padding: 10px 25px;
        border: none;
        border-radius: 25px;
        background: #fff;
        color: #0c7c43;
        font-weight: bold;
        cursor: pointer;
    }

/* Right Panel */
.right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

    .right h2 {
        margin-bottom: 20px;
        color: #2d446a;
    }

    .right input {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 25px;
        outline: none;
    }

    .right button {
        padding: 12px;
        border: none;
        border-radius: 25px;
        background: #f17b23;
        color: #fff;
        font-weight: bold;
        cursor: pointer;
        margin-top: 1%;
    }

    .right .signup {
        margin-top: 20px;
        text-align: center;
    }
    .buttonpadd{
        padding:10px;
        margin:auto;
    }
/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 400px;
    }

    .left {
        border-radius: 12px 12px 0 0;
        padding: 20px;
    }

    .right {
        padding: 20px;
    }
}
