body {
    background-color: #219756;
    color: white;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: white;
    color: #219756;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    height: 100vh;
    background: url('./assets/portrait-man-practicing-his-profession-celebrate-international-labour-day (2).jpg') center/cover no-repeat;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.image-text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-weight: 600;
    max-width: 90%;
    line-height: 1.6;
}

.image-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.image-text p {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 400;
    opacity: 0.8;
}

.btn-primary {
    background-color: #219756;
    border-color: #219756;
}

.btn-primary:hover {
    background-color: #1d7d46;
    border-color: #1d7d46;
}
