﻿body {
    background: #f5f6fa;
    font-family: 'Segoe UI', sans-serif;
}

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 1154px;
    height: 531px;
    background: #fff;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Left Section */
.login-left {
    width: 45%;
    background: #ffffff;
    position: relative;
    padding: 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7a2ca8;
}

    .brand i {
        font-size: 42px;
    }

.bars {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.bar {
    width: 35px;
    border-radius: 16px;
}

.bar-1 {
    height: 150px;
    background: #d1b3e0;
}

.bar-2 {
    height: 200px;
    background: #c084d8;
}

.bar-3 {
    height: 280px;
    background: #9b59b6cc;
}
.bar-4 {
    height: 360px;
    background: #9b59b6;
}

/* Right Section */
.login-right {
    width: 55%;
    padding: 40px 60px;
}

.signup-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.login-form {
    max-width: 380px;
    margin-left: auto;
}

.form-control {
    height: 45px;
    border-radius: 8px;
}

.btn-login {
    background: linear-gradient(90deg, #7a2ca8, #9b59b6);
    color: #fff;
    height: 45px;
    border-radius: 8px;
    font-weight: 500;
}

    .btn-login:hover {
        background: linear-gradient(90deg, #6a1b9a, #8e44ad);
        color: #ffffff !important;
        font-weight: 700; 

    }/*        text-shadow: 0 0 8px rgba(255, 255, 255, 0.9); */

.forgot-link {
    font-size: 14px;
    text-decoration: none;
    color: #9b59b6;
}
