/* Add application specific styles here */
bodymain {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    display: flex;
    width: 90vw;
    height: 80vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.left-section {
    flex: 1;
    background-image: url("..\\img\\ArtemisLandingPage3.png");
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
}

.overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 400;
}

    .overlay-text span {
        color: #fdd835;
        font-size: 1.5rem;
    }

.right-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.logo-text {
    font-size: 42px;
    font-weight: 700;
    color: #333;
}

.hello {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin: 12px 0;
    text-align: center;
}

.welcome {
    font-size: 25px;
    font-weight: 200;
    color: #666;
    margin-bottom: 18px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-control,
.btn {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    height: 50px;
    box-sizing: border-box;
}

.form-control {
    margin-bottom: 20px;
}

.btn {
    background-color: #fdd835;
    color: #666;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        background-color: #e6c200;
    }

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 100vw;
        height: auto;
    }

    .left-section {
        height: 200px;
    }

    .right-section {
        padding: 20px;
    }

    .form-control,
    .btn {
        width: 100%;
        font-size: 0.9rem;
    }

    .hello {
        font-size: 2.5rem;
    }

    .welcome {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hello {
        font-size: 2rem;
    }

    .welcome {
        font-size: 0.9rem;
    }

    .form-control,
    .btn {
        padding: 12px;
        font-size: 0.8rem;
    }
}

.no-data-message {
    text-align: center;
    color: #999;
    font-size: 18px;
    padding: 80px 0;
}