﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left {
    width: 55%;
    background: url('https://images.pexels.com/photos/1181675/pexels-photo-1181675.jpeg?auto=compress&cs=tinysrgb&w=1600') no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.35);
    backdrop-filter: blur(1px);
}

.left-text {
    position: relative;
    font-size: 42px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.3;
}

    .left-text .subtext {
        font-size: 18px;
        font-weight: 500;
        margin-top: 20px;
        line-height: 1.5;
    }

.right {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.login-box {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .login-box h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: left;
    }

label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

    input:focus {
        border-color: #007bff;
        box-shadow: 0 2px 10px rgba(0,123,255,0.18);
    }

.select-box {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

    .select-box:focus {
        border-color: #007bff;
        box-shadow: 0 2px 10px rgba(0,123,255,0.18);
    }

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

    button:hover {
        background: #0064d4;
    }

.signup {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

    .signup a {
        color: #007bff;
        text-decoration: none;
        font-weight: 600;
    }

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
    }


    .left {
        display: none !important;
    }

    .right {
        width: 100% !important;
        padding: 40px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-box {
        width: 100%;
        max-width: 380px;
    }
}
