* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url('/Upload/Bg.png');
    background-size: cover; /* Optional: makes it cover the screen */
    background-repeat: no-repeat; /* Optional: prevents tiling */
    background-position: center;
}

.wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

.login-container {
    width: 40%;
    min-width: 400px;
    background-color: rgba(255, 255, 255, 0.29);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2); /* fixed */
    margin: auto 0 auto 50px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
}

.branding {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: -90px;
    margin-top: 4%;
    padding-left: 4%;
}

    .branding img {
        width: 36px;
        height: 36px;
    }

    .branding span {
        font-size: 24px;
        font-weight: 600;
        color: white;
    }

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.input-group {
    background: #fff8dc;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap !important;
}

    .input-group .icon {
        margin-right: 10px;
        font-size: 18px;
    }

    .input-group input {
        border: none;
        background: transparent;
        font-size: 16px;
        width: 100%;
        outline: none;
    }

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 25px;
    color: #333;
}

.options a {
    color: #333;
    text-decoration: none;
}

button {
    width: 100%;
    background-color: #327d6e;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #2c6a5c;
}

.image-container {
    width: 60%;
    background: url('Login.png') no-repeat center center;
    background-size: cover;
}
