html {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, #013c4a 0, #193e4c 44%, #004b5b 100%);
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

body,
html {
    margin: 0;
    padding: 0;
}

.login-box {
    width: 400px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.company-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.login-title {
    margin-bottom: 30px;
    font-size: 2em;
}

.login-form input,
.login-form button {
    width: calc(100% - 40px);
    /* Adjusting width to account for padding */
    padding: 15px 20px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.85);
    color: #013c4a;
}

.login-form button {
    background-color: #017c73;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-form button:hover {
    background-color: #02695c;
}

/* Ensure that input placeholders are legible */
::placeholder {
    color: #013c4a;
    opacity: 1;
}

/* Remove input focus outline */
input:focus {
    outline: none;
}