* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

/* Full Screen */
.login-container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

/* Main Card */
.login-card {
    width: 1100px;
    max-width: 95%;

    height: 650px;

    background: #fff;

    display: flex;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* Left Image */
.login-image {
    flex: 1;
    overflow: hidden;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Form */
.login-form {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}

.login-form h1 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.login-form p {
    color: #666;
    margin-bottom: 35px;
}

/* Form */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select {

    width: 100%;
    height: 50px;

    padding: 0 15px;

    border: 1px solid #dcdcdc;
    border-radius: 10px;

    outline: none;
    transition: .3s;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {

    border-color: #2563eb;

    box-shadow: 0 0 8px rgba(37,99,235,.2);
}

/* Button */

.btn {

    width: 100%;
    height: 50px;

    border: none;

    border-radius: 10px;

    background: #2563eb;

    color: white;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.btn:hover {

    background: #1d4ed8;
}

.message{
    margin-top:20px;
    color:red;
    text-align:center;
}

/* Mobile */

@media(max-width:900px){

    .login-card{

        flex-direction:column;
        height:auto;
    }

    .login-image{

        height:250px;
    }

    .login-form{

        padding:35px;
    }

}