.devform-container1 {
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.devform-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

.devform-registration-form .input-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.devform-registration-form .devform-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.devform-registration-form label {
    text-align: left;
    margin-bottom: 0.5rem;
}

.devform-registration-form a {
    color: #6c63ff;
    text-decoration: none;
}

.devform-registration-form a:hover {
    text-decoration: underline;
}

.devform-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #6c63ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.devform-btn:hover {
    background-color: #5a54d6;
}

.devform-login-link {
    margin-top: 1rem;
    color: #666;
}

.devform-hidden {
    display: none;
}