* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F3F3F3;
    display: flex;
    min-height: 100vh;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

/* Left Side - Login Form */
.login-section {
    flex: 1;
    align-items: center;
    padding: 83px;
}

.logo-container {
    text-align: left;
    margin-bottom: 40px;
    margin-top: 98px;
    margin-left: revert-layer;
}

.logo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.login-form {
    width: 100%;
    max-width: 360px;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    width: 20px;
    height: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 0;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
    background: #FFFFFF;
    box-shadow: 0px 4px 5.8px -5px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
}

.form-input:focus {
    outline: none;
    border-color: #666;
}

.form-input::placeholder {
    color: #999;
}

.login-button {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.login-button:hover {
    background: #333;
}

/* Right Side - Hero Section */
.hero-section {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
    background-image: url("../svg/bg_box.svg");
    background-size: cover;
    border-radius: 17px;
    height: 800px;
    width: 674px;
    background-repeat: no-repeat, repeat;
    background-origin: content-box;
}

.hero-background {
    position: absolute;
    width: 100%;
}

.diagonal-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
    transform-origin: center;
}

.line-1 {
    width: 150%;
    top: 15%;
    left: -25%;
    transform: rotate(-25deg);
}

.line-2 {
    width: 150%;
    top: 35%;
    left: -25%;
    transform: rotate(-25deg);
    opacity: 0.5;
}

.line-3 {
    width: 150%;
    bottom: 30%;
    right: -25%;
    transform: rotate(-25deg);
    opacity: 0.3;
}

.hero-logo {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 2;
    margin: 101px;
}

.hero-logo img {
}

.hero-card {
    background-image: url(../svg/bg_box_curve.svg);
    width: 86%;
    height: 202px;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: contain;
    margin: auto;
}

.row-txt {
    padding: 26px 15px 1px;
}

.row-txt h1 {
    font-size: 19px;
    color: #fff;
    padding-top: 7px;
}

.row-txt p {
    color: #DCDCDC;
    padding-top: 10px;
}

.welcome-card {
    padding: 0px 45px 41px;
}

.welcome-card h4 {
    color: #fff;
    font-size: 23px;
}

.welcome-card p {
    color: #DCDCDC;
    font-size: 16px;
    padding-top: 7px;
}



      