body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(
        to bottom,
        #00634c,
        #00634c,
        #00392c
    );
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo-img {
    width: 200px; 
    height: auto;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 230px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.277);
    color: #000000c8;
    
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;      /* box to line */
    border-bottom: 1px solid #000000;     /* thickness of line */
    border-radius: 1px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #888;
}

.forgot-password {
    display: block;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 15px;
}

.submit {
    width: 100%;
    padding: 6px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.submit {
    background-color: #00634c;
}

.demo-btn {
    background-color: #00634c;
}

.submit span {
    margin-left: 5px;
}


.disclaimer {
    font-size: 10px;
    color: #555;
    text-align: center;
    margin-top: 10px;
}

.disclaimer a {
    color: #007bff;
    text-decoration: none;
}