* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fef2e8;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: white;
    width: 850px;
    height: 500px;
    display: flex;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.login-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-img {
    width: 30px;
    margin-right: 10px;
}

.logo-text {
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #001e2b;
}

form label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #f5f5f5;
    font-size: 14px;
}

.input-field .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #aaa;
}

.forgot {
    font-size: 12px;
    color: #ff6600;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.login-btn {
    width: 100%;
    background: #ff8a00;
    border: none;
    padding: 15px;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #ff7700;
}

.signup {
    font-size: 12px;
    color: #777;
    text-align: center;
}

.signup a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.welcome-section {
    flex: 1;
    background: linear-gradient(135deg, #ff8a00, #ff6600);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.welcome-section h1 {
    font-size: 36px;
    font-weight: 800;
    text-align: left;
    padding: 30px;
}

.welcome-section::before,
.welcome-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.welcome-section::before {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
}

.welcome-section::after {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 40px;
}
