body {
    font-family: Arial, sans-serif;
    background-color: #161d31;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    padding-left: 65px;
}

.logo {
    width: 40px;
    height: auto;
    margin-right: 5px;
}

.login-card {
    background-color: #2a2e3d;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 350px;
    box-sizing: border-box;
}

    .login-card h2 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #fff;
        margin: 0;
    }

    .login-card p {
        margin: 0.5rem 0;
        font-size: 0.9rem;
        color: #ccc;
    }

input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #4a4a5a;
    background-color: #3b3f4f;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #ef7d00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

    button:hover {
        background-color: #d66c00;
    }

.almost-there {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    user-select: none;
    pointer-events: none;
}
