body {
    background-color: #2e2e2e;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding-top: 200px;
}

.title {
    font-size: 10.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
}

.title span {
    color: #4CAF50;
}

.title .doc {
    font-size: 1.5rem;
    position: absolute;
    top: 10%;
    right: -50px;
    color: #ffffff;
}

.container {
    background-color: #3c3c3c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

.logo {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 200px;
    height: auto;
    z-index: 1000;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #45a049;
}