body {
    background-color: #000000;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    display: flex;
    min-height: 100vh;
    overflow-x: auto;
}

.container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.form-wrapper {
    width: 100%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flex {
    display: flex;
}

.cursor-pointer {
    cursor: pointer;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.welcome {
    text-align: center;
    font-size: 2.5rem; /* Increased font size for PentestAI */
    font-weight: bold;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.label {
    font-size: 0.875rem;
    font-weight: 600;
}

.input {
    background-color: #1a1a1a;
    border: 1px solid #4a4a4a;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #ffffff;
    border-radius: 1rem;
    outline: none;
}

.input::placeholder {
    color: #a0a0a0;
}

.input:focus {
    border-color: #007bff;
}

.button {
    background-color: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.button:hover {
    opacity: 0.9;
}

.signup-link, .terms {
    text-align: center;
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}

.link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.link:hover {
    color: #0056b3;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}