* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
}

.container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
}

.login-container {
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}

.logo img {
    max-width: 144px;
    width:100%;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

h1 span {
    display: inline-block;
}

p {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #5cb85c;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #5cb85c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #4cae4c;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link a {
    color: #5cb85c;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.image-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    display: none;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.analytics-overlay {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
}

.chart {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
}

.chart h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.chart img {
    width: 100%;
    height: auto;
}

footer {
    text-align: center;
    padding: 10px;
    font-size: 12px !important;
    color: #aaa;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .image-container {
        display: block;
    }
}

.input-field {
    width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 16px;
}

.input-field:focus {
    outline: none;
    border-color: #6e95fd;
    box-shadow: 0px 0px 5px rgba(110, 149, 253, 0.5);
}

.input-field::placeholder {
    color: #B0A9A9; 
    font-weight: 300;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
